gitextract_wblmb6r9/ ├── .gitignore ├── .npmignore ├── .vscode/ │ └── settings.json ├── HTML/ │ ├── .gitignore │ ├── gulpfile.js │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── readme.md │ ├── src/ │ │ ├── MapComponent.test.tsx │ │ ├── MapComponent.view.test.tsx │ │ ├── MapLayers.test.tsx │ │ ├── MapLayers.tsx │ │ ├── MapMarkers.tsx │ │ ├── MapShapes.tsx │ │ ├── __snapshots__/ │ │ │ ├── MapComponent.test.tsx.snap │ │ │ ├── MapComponent.view.test.tsx.snap │ │ │ └── MapLayers.test.tsx.snap │ │ ├── index.css │ │ ├── index.tsx │ │ ├── mapComponent.tsx │ │ ├── mapComponent.view.tsx │ │ ├── models.ts │ │ ├── react-app-env.d.ts │ │ ├── serviceWorker.ts │ │ ├── setupTests.ts │ │ ├── styles/ │ │ │ ├── markerAnimations.css │ │ │ └── markers.css │ │ ├── testData/ │ │ │ ├── mockMapLayers.ts │ │ │ ├── mockMapMarkers.ts │ │ │ ├── mockMapShapes.ts │ │ │ └── svgIcons.ts │ │ ├── utilities.test.ts.old │ │ ├── utilities.ts │ │ └── webBase64Image.ts │ └── tsconfig.json ├── WebViewLeaflet/ │ ├── ActivityOverlay.tsx │ ├── DebugMessageBox.tsx │ ├── WebViewLeaflet.tsx │ ├── WebViewLeaflet.view.tsx │ ├── assets/ │ │ └── index.html │ ├── index.d.ts │ ├── index.ts │ ├── models.ts │ ├── package.json │ └── yarn-error.log ├── demoApp/ │ ├── .expo-shared/ │ │ └── assets.json │ ├── .gitignore │ ├── App.tsx │ ├── app.json │ ├── babel.config.js │ ├── gulpfile.js │ ├── package.json │ ├── tsconfig.json │ └── yarn-error.log ├── package.json └── readme.md