├── .github └── workflows │ ├── deploy.yml │ ├── push_dist_to_npm.yml │ └── test_and_build.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE.txt ├── NOTICE.md ├── README.md ├── config.js ├── jest.config.js ├── package.json ├── src ├── App.module.css ├── App.tsx ├── Converters.ts ├── NavBar.ts ├── PlainButton.module.css ├── PlainButton.tsx ├── Window.ts ├── actions │ └── Actions.ts ├── api │ ├── Api.ts │ └── graphhopper.d.ts ├── contexts │ └── SettingsContext.ts ├── custom.d.ts ├── fonts │ ├── NotoSans-Regular.ttf │ ├── OpenSans-Variable.ttf │ ├── Roboto-Regular.ttf │ └── RobotoCondensed-Regular.ttf ├── index.html ├── index.tsx ├── layers │ ├── ContextMenu.module.css │ ├── ContextMenu.tsx │ ├── DefaultMapPopup.module.css │ ├── InstructionPopup.tsx │ ├── MapFeaturePopup.module.css │ ├── MapFeaturePopup.tsx │ ├── MapPopup.tsx │ ├── POIPopup.tsx │ ├── PathDetailPopup.tsx │ ├── UseAreasLayer.tsx │ ├── UseBackgroundLayer.tsx │ ├── UseCurrentLocationLayer.tsx │ ├── UseExternalMVTLayer.tsx │ ├── UseMapBorderLayer.tsx │ ├── UsePOIsLayer.tsx │ ├── UsePathDetailsLayer.tsx │ ├── UsePathsLayer.tsx │ ├── UseQueryPointsLayer.tsx │ ├── UseRoutingGraphLayer.tsx │ ├── UseUrbanDensityLayer.tsx │ └── createMarkerSVG.ts ├── logo.svg ├── manifest.json ├── map │ ├── ContextMenuContent.module.css │ ├── ContextMenuContent.tsx │ ├── LocationButton.module.css │ ├── LocationButton.tsx │ ├── Map.module.css │ ├── MapComponent.tsx │ ├── MapOptions.module.css │ ├── MapOptions.tsx │ ├── MapPopups.tsx │ ├── Marker.tsx │ ├── findNextWayPoint.ts │ ├── layer-group-solid.svg │ ├── location.svg │ ├── location_error.svg │ ├── location_not_in_sync.svg │ ├── location_on.svg │ ├── location_searching.svg │ └── map.ts ├── pathDetails │ ├── HeightGraph.css │ ├── PathDetails.module.css │ ├── PathDetails.tsx │ └── img │ │ ├── heightgraph-area-chart.svg │ │ └── heightgraph-remove.svg ├── pois │ ├── AddressParseResult.ts │ └── img │ │ ├── car_rental.svg │ │ ├── car_repair.svg │ │ ├── charger.svg │ │ ├── cinematic_blur.svg │ │ ├── flight_takeoff.svg │ │ ├── home_and_garden.svg │ │ ├── hotel.svg │ │ ├── local_atm.svg │ │ ├── local_gas_station.svg │ │ ├── local_hospital.svg │ │ ├── local_parking.svg │ │ ├── local_pharmacy.svg │ │ ├── local_post_office.svg │ │ ├── location_city.svg │ │ ├── luggage.svg │ │ ├── museum.svg │ │ ├── pedal_bike.svg │ │ ├── police.svg │ │ ├── pool.svg │ │ ├── recycling.svg │ │ ├── restaurant.svg │ │ ├── school.svg │ │ ├── sports_handball.svg │ │ ├── store.svg │ │ ├── train.svg │ │ ├── universal_currency_alt.svg │ │ ├── visibility.svg │ │ ├── water_drop.svg │ │ └── wifi.svg ├── sidebar │ ├── CustomModelBox.css │ ├── CustomModelBox.module.css │ ├── CustomModelBox.tsx │ ├── CustomModelExamples.ts │ ├── ErrorMessage.module.css │ ├── ErrorMessage.tsx │ ├── MobileSidebar.module.css │ ├── MobileSidebar.tsx │ ├── PoweredBy.module.css │ ├── PoweredBy.tsx │ ├── RoutingResult.module.css │ ├── RoutingResults.tsx │ ├── SettingsBox.module.css │ ├── SettingsBox.tsx │ ├── edit_square.svg │ ├── edit_square_disabled.svg │ ├── file_download.svg │ ├── header.png │ ├── header.svg │ ├── instructions │ │ ├── Instructions.module.css │ │ ├── Instructions.tsx │ │ ├── continue.png │ │ ├── ferry.png │ │ ├── keep_left.png │ │ ├── keep_right.png │ │ ├── left.png │ │ ├── pt_end_trip.png │ │ ├── pt_start_trip.png │ │ ├── pt_transfer_to.png │ │ ├── right.png │ │ ├── roundabout.png │ │ ├── sharp_left.png │ │ ├── sharp_right.png │ │ ├── slight_left.png │ │ ├── slight_right.png │ │ ├── u_turn.png │ │ ├── u_turn_left.png │ │ ├── u_turn_right.png │ │ └── unknown.png │ ├── list.svg │ ├── menu.svg │ ├── open_custom_model.svg │ ├── routeHints │ │ ├── border.svg │ │ ├── directions_boat.svg │ │ ├── elevation.svg │ │ ├── floor.svg │ │ ├── privacy_tip.svg │ │ ├── push_bike.svg │ │ ├── remove_road.svg │ │ ├── ssid_chart.svg │ │ ├── toll_dollar.svg │ │ ├── toll_euro.svg │ │ ├── warn_report.svg │ │ └── water.svg │ ├── search │ │ ├── AddressInput.module.css │ │ ├── AddressInput.tsx │ │ ├── AddressInputAutocomplete.module.css │ │ ├── AddressInputAutocomplete.tsx │ │ ├── PopUp.module.css │ │ ├── PopUp.tsx │ │ ├── Search.module.css │ │ ├── Search.tsx │ │ ├── arrow_back.svg │ │ ├── current-location.svg │ │ ├── info.svg │ │ ├── minus-circle-solid.svg │ │ ├── plus-circle-solid.svg │ │ ├── routingProfiles │ │ │ ├── RoutingProfiles.module.css │ │ │ ├── RoutingProfiles.tsx │ │ │ ├── bike.svg │ │ │ ├── car.svg │ │ │ ├── chevron.svg │ │ │ ├── foot.svg │ │ │ ├── hike.svg │ │ │ ├── motorcycle.svg │ │ │ ├── mtb-bicycle.svg │ │ │ ├── profileIcons.ts │ │ │ ├── question_mark.svg │ │ │ ├── racingbike.svg │ │ │ ├── scooter.svg │ │ │ ├── small_truck.svg │ │ │ ├── truck.svg │ │ │ └── wheelchair.svg │ │ └── send.svg │ ├── times-solid-thin.svg │ ├── times-solid.svg │ ├── toggle_off.svg │ ├── toggle_on.svg │ ├── unfold.svg │ └── unfold_less.svg ├── stores │ ├── ApiInfoStore.ts │ ├── CurrentLocationStore.ts │ ├── Dispatcher.ts │ ├── ErrorStore.ts │ ├── MapActionReceiver.ts │ ├── MapFeatureStore.ts │ ├── MapOptionsStore.ts │ ├── POIsStore.ts │ ├── PathDetailsStore.ts │ ├── QueryStore.ts │ ├── RouteStore.ts │ ├── SettingsStore.ts │ ├── Store.ts │ └── Stores.ts ├── translation │ ├── Translation.ts │ └── tr.json └── utils.ts ├── test ├── Converters.test.ts ├── DummyApi.ts ├── NavBar.test.ts ├── Translation.test.ts ├── findNextWayPoint.test.ts ├── poi │ └── AddressParseResult.test.ts ├── routing │ └── Api.test.ts └── stores │ ├── ApiInfoStore.test.ts │ ├── QueryStore.test.ts │ └── RouteStore.test.ts ├── tsconfig.json ├── update-translations.py ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/push_dist_to_npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/.github/workflows/push_dist_to_npm.yml -------------------------------------------------------------------------------- /.github/workflows/test_and_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/.github/workflows/test_and_build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | package-lock.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/README.md -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/package.json -------------------------------------------------------------------------------- /src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/App.module.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Converters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/Converters.ts -------------------------------------------------------------------------------- /src/NavBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/NavBar.ts -------------------------------------------------------------------------------- /src/PlainButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/PlainButton.module.css -------------------------------------------------------------------------------- /src/PlainButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/PlainButton.tsx -------------------------------------------------------------------------------- /src/Window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/Window.ts -------------------------------------------------------------------------------- /src/actions/Actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/actions/Actions.ts -------------------------------------------------------------------------------- /src/api/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/api/Api.ts -------------------------------------------------------------------------------- /src/api/graphhopper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/api/graphhopper.d.ts -------------------------------------------------------------------------------- /src/contexts/SettingsContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/contexts/SettingsContext.ts -------------------------------------------------------------------------------- /src/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/custom.d.ts -------------------------------------------------------------------------------- /src/fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/OpenSans-Variable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/fonts/OpenSans-Variable.ttf -------------------------------------------------------------------------------- /src/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/fonts/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/layers/ContextMenu.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/ContextMenu.module.css -------------------------------------------------------------------------------- /src/layers/ContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/ContextMenu.tsx -------------------------------------------------------------------------------- /src/layers/DefaultMapPopup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/DefaultMapPopup.module.css -------------------------------------------------------------------------------- /src/layers/InstructionPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/InstructionPopup.tsx -------------------------------------------------------------------------------- /src/layers/MapFeaturePopup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/MapFeaturePopup.module.css -------------------------------------------------------------------------------- /src/layers/MapFeaturePopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/MapFeaturePopup.tsx -------------------------------------------------------------------------------- /src/layers/MapPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/MapPopup.tsx -------------------------------------------------------------------------------- /src/layers/POIPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/POIPopup.tsx -------------------------------------------------------------------------------- /src/layers/PathDetailPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/PathDetailPopup.tsx -------------------------------------------------------------------------------- /src/layers/UseAreasLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/UseAreasLayer.tsx -------------------------------------------------------------------------------- /src/layers/UseBackgroundLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/UseBackgroundLayer.tsx -------------------------------------------------------------------------------- /src/layers/UseCurrentLocationLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/UseCurrentLocationLayer.tsx -------------------------------------------------------------------------------- /src/layers/UseExternalMVTLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/UseExternalMVTLayer.tsx -------------------------------------------------------------------------------- /src/layers/UseMapBorderLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/UseMapBorderLayer.tsx -------------------------------------------------------------------------------- /src/layers/UsePOIsLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/UsePOIsLayer.tsx -------------------------------------------------------------------------------- /src/layers/UsePathDetailsLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/UsePathDetailsLayer.tsx -------------------------------------------------------------------------------- /src/layers/UsePathsLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/UsePathsLayer.tsx -------------------------------------------------------------------------------- /src/layers/UseQueryPointsLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/UseQueryPointsLayer.tsx -------------------------------------------------------------------------------- /src/layers/UseRoutingGraphLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/UseRoutingGraphLayer.tsx -------------------------------------------------------------------------------- /src/layers/UseUrbanDensityLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/UseUrbanDensityLayer.tsx -------------------------------------------------------------------------------- /src/layers/createMarkerSVG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/layers/createMarkerSVG.ts -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/map/ContextMenuContent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/ContextMenuContent.module.css -------------------------------------------------------------------------------- /src/map/ContextMenuContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/ContextMenuContent.tsx -------------------------------------------------------------------------------- /src/map/LocationButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/LocationButton.module.css -------------------------------------------------------------------------------- /src/map/LocationButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/LocationButton.tsx -------------------------------------------------------------------------------- /src/map/Map.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/Map.module.css -------------------------------------------------------------------------------- /src/map/MapComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/MapComponent.tsx -------------------------------------------------------------------------------- /src/map/MapOptions.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/MapOptions.module.css -------------------------------------------------------------------------------- /src/map/MapOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/MapOptions.tsx -------------------------------------------------------------------------------- /src/map/MapPopups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/MapPopups.tsx -------------------------------------------------------------------------------- /src/map/Marker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/Marker.tsx -------------------------------------------------------------------------------- /src/map/findNextWayPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/findNextWayPoint.ts -------------------------------------------------------------------------------- /src/map/layer-group-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/layer-group-solid.svg -------------------------------------------------------------------------------- /src/map/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/location.svg -------------------------------------------------------------------------------- /src/map/location_error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/location_error.svg -------------------------------------------------------------------------------- /src/map/location_not_in_sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/location_not_in_sync.svg -------------------------------------------------------------------------------- /src/map/location_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/location_on.svg -------------------------------------------------------------------------------- /src/map/location_searching.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/location_searching.svg -------------------------------------------------------------------------------- /src/map/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/map/map.ts -------------------------------------------------------------------------------- /src/pathDetails/HeightGraph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pathDetails/HeightGraph.css -------------------------------------------------------------------------------- /src/pathDetails/PathDetails.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pathDetails/PathDetails.module.css -------------------------------------------------------------------------------- /src/pathDetails/PathDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pathDetails/PathDetails.tsx -------------------------------------------------------------------------------- /src/pathDetails/img/heightgraph-area-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pathDetails/img/heightgraph-area-chart.svg -------------------------------------------------------------------------------- /src/pathDetails/img/heightgraph-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pathDetails/img/heightgraph-remove.svg -------------------------------------------------------------------------------- /src/pois/AddressParseResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/AddressParseResult.ts -------------------------------------------------------------------------------- /src/pois/img/car_rental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/car_rental.svg -------------------------------------------------------------------------------- /src/pois/img/car_repair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/car_repair.svg -------------------------------------------------------------------------------- /src/pois/img/charger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/charger.svg -------------------------------------------------------------------------------- /src/pois/img/cinematic_blur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/cinematic_blur.svg -------------------------------------------------------------------------------- /src/pois/img/flight_takeoff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/flight_takeoff.svg -------------------------------------------------------------------------------- /src/pois/img/home_and_garden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/home_and_garden.svg -------------------------------------------------------------------------------- /src/pois/img/hotel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/hotel.svg -------------------------------------------------------------------------------- /src/pois/img/local_atm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/local_atm.svg -------------------------------------------------------------------------------- /src/pois/img/local_gas_station.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/local_gas_station.svg -------------------------------------------------------------------------------- /src/pois/img/local_hospital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/local_hospital.svg -------------------------------------------------------------------------------- /src/pois/img/local_parking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/local_parking.svg -------------------------------------------------------------------------------- /src/pois/img/local_pharmacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/local_pharmacy.svg -------------------------------------------------------------------------------- /src/pois/img/local_post_office.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/local_post_office.svg -------------------------------------------------------------------------------- /src/pois/img/location_city.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/location_city.svg -------------------------------------------------------------------------------- /src/pois/img/luggage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/luggage.svg -------------------------------------------------------------------------------- /src/pois/img/museum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/museum.svg -------------------------------------------------------------------------------- /src/pois/img/pedal_bike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/pedal_bike.svg -------------------------------------------------------------------------------- /src/pois/img/police.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/police.svg -------------------------------------------------------------------------------- /src/pois/img/pool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/pool.svg -------------------------------------------------------------------------------- /src/pois/img/recycling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/recycling.svg -------------------------------------------------------------------------------- /src/pois/img/restaurant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/restaurant.svg -------------------------------------------------------------------------------- /src/pois/img/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/school.svg -------------------------------------------------------------------------------- /src/pois/img/sports_handball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/sports_handball.svg -------------------------------------------------------------------------------- /src/pois/img/store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/store.svg -------------------------------------------------------------------------------- /src/pois/img/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/train.svg -------------------------------------------------------------------------------- /src/pois/img/universal_currency_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/universal_currency_alt.svg -------------------------------------------------------------------------------- /src/pois/img/visibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/visibility.svg -------------------------------------------------------------------------------- /src/pois/img/water_drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/water_drop.svg -------------------------------------------------------------------------------- /src/pois/img/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/pois/img/wifi.svg -------------------------------------------------------------------------------- /src/sidebar/CustomModelBox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/CustomModelBox.css -------------------------------------------------------------------------------- /src/sidebar/CustomModelBox.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/CustomModelBox.module.css -------------------------------------------------------------------------------- /src/sidebar/CustomModelBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/CustomModelBox.tsx -------------------------------------------------------------------------------- /src/sidebar/CustomModelExamples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/CustomModelExamples.ts -------------------------------------------------------------------------------- /src/sidebar/ErrorMessage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/ErrorMessage.module.css -------------------------------------------------------------------------------- /src/sidebar/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/ErrorMessage.tsx -------------------------------------------------------------------------------- /src/sidebar/MobileSidebar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/MobileSidebar.module.css -------------------------------------------------------------------------------- /src/sidebar/MobileSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/MobileSidebar.tsx -------------------------------------------------------------------------------- /src/sidebar/PoweredBy.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/PoweredBy.module.css -------------------------------------------------------------------------------- /src/sidebar/PoweredBy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/PoweredBy.tsx -------------------------------------------------------------------------------- /src/sidebar/RoutingResult.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/RoutingResult.module.css -------------------------------------------------------------------------------- /src/sidebar/RoutingResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/RoutingResults.tsx -------------------------------------------------------------------------------- /src/sidebar/SettingsBox.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/SettingsBox.module.css -------------------------------------------------------------------------------- /src/sidebar/SettingsBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/SettingsBox.tsx -------------------------------------------------------------------------------- /src/sidebar/edit_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/edit_square.svg -------------------------------------------------------------------------------- /src/sidebar/edit_square_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/edit_square_disabled.svg -------------------------------------------------------------------------------- /src/sidebar/file_download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/file_download.svg -------------------------------------------------------------------------------- /src/sidebar/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/header.png -------------------------------------------------------------------------------- /src/sidebar/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/header.svg -------------------------------------------------------------------------------- /src/sidebar/instructions/Instructions.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/Instructions.module.css -------------------------------------------------------------------------------- /src/sidebar/instructions/Instructions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/Instructions.tsx -------------------------------------------------------------------------------- /src/sidebar/instructions/continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/continue.png -------------------------------------------------------------------------------- /src/sidebar/instructions/ferry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/ferry.png -------------------------------------------------------------------------------- /src/sidebar/instructions/keep_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/keep_left.png -------------------------------------------------------------------------------- /src/sidebar/instructions/keep_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/keep_right.png -------------------------------------------------------------------------------- /src/sidebar/instructions/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/left.png -------------------------------------------------------------------------------- /src/sidebar/instructions/pt_end_trip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/pt_end_trip.png -------------------------------------------------------------------------------- /src/sidebar/instructions/pt_start_trip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/pt_start_trip.png -------------------------------------------------------------------------------- /src/sidebar/instructions/pt_transfer_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/pt_transfer_to.png -------------------------------------------------------------------------------- /src/sidebar/instructions/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/right.png -------------------------------------------------------------------------------- /src/sidebar/instructions/roundabout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/roundabout.png -------------------------------------------------------------------------------- /src/sidebar/instructions/sharp_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/sharp_left.png -------------------------------------------------------------------------------- /src/sidebar/instructions/sharp_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/sharp_right.png -------------------------------------------------------------------------------- /src/sidebar/instructions/slight_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/slight_left.png -------------------------------------------------------------------------------- /src/sidebar/instructions/slight_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/slight_right.png -------------------------------------------------------------------------------- /src/sidebar/instructions/u_turn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/u_turn.png -------------------------------------------------------------------------------- /src/sidebar/instructions/u_turn_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/u_turn_left.png -------------------------------------------------------------------------------- /src/sidebar/instructions/u_turn_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/u_turn_right.png -------------------------------------------------------------------------------- /src/sidebar/instructions/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/instructions/unknown.png -------------------------------------------------------------------------------- /src/sidebar/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/list.svg -------------------------------------------------------------------------------- /src/sidebar/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/menu.svg -------------------------------------------------------------------------------- /src/sidebar/open_custom_model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/open_custom_model.svg -------------------------------------------------------------------------------- /src/sidebar/routeHints/border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/routeHints/border.svg -------------------------------------------------------------------------------- /src/sidebar/routeHints/directions_boat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/routeHints/directions_boat.svg -------------------------------------------------------------------------------- /src/sidebar/routeHints/elevation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/routeHints/elevation.svg -------------------------------------------------------------------------------- /src/sidebar/routeHints/floor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/routeHints/floor.svg -------------------------------------------------------------------------------- /src/sidebar/routeHints/privacy_tip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/routeHints/privacy_tip.svg -------------------------------------------------------------------------------- /src/sidebar/routeHints/push_bike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/routeHints/push_bike.svg -------------------------------------------------------------------------------- /src/sidebar/routeHints/remove_road.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/routeHints/remove_road.svg -------------------------------------------------------------------------------- /src/sidebar/routeHints/ssid_chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/routeHints/ssid_chart.svg -------------------------------------------------------------------------------- /src/sidebar/routeHints/toll_dollar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/routeHints/toll_dollar.svg -------------------------------------------------------------------------------- /src/sidebar/routeHints/toll_euro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/routeHints/toll_euro.svg -------------------------------------------------------------------------------- /src/sidebar/routeHints/warn_report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/routeHints/warn_report.svg -------------------------------------------------------------------------------- /src/sidebar/routeHints/water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/routeHints/water.svg -------------------------------------------------------------------------------- /src/sidebar/search/AddressInput.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/AddressInput.module.css -------------------------------------------------------------------------------- /src/sidebar/search/AddressInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/AddressInput.tsx -------------------------------------------------------------------------------- /src/sidebar/search/AddressInputAutocomplete.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/AddressInputAutocomplete.module.css -------------------------------------------------------------------------------- /src/sidebar/search/AddressInputAutocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/AddressInputAutocomplete.tsx -------------------------------------------------------------------------------- /src/sidebar/search/PopUp.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/PopUp.module.css -------------------------------------------------------------------------------- /src/sidebar/search/PopUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/PopUp.tsx -------------------------------------------------------------------------------- /src/sidebar/search/Search.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/Search.module.css -------------------------------------------------------------------------------- /src/sidebar/search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/Search.tsx -------------------------------------------------------------------------------- /src/sidebar/search/arrow_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/arrow_back.svg -------------------------------------------------------------------------------- /src/sidebar/search/current-location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/current-location.svg -------------------------------------------------------------------------------- /src/sidebar/search/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/info.svg -------------------------------------------------------------------------------- /src/sidebar/search/minus-circle-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/minus-circle-solid.svg -------------------------------------------------------------------------------- /src/sidebar/search/plus-circle-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/plus-circle-solid.svg -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/RoutingProfiles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/RoutingProfiles.module.css -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/RoutingProfiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/RoutingProfiles.tsx -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/bike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/bike.svg -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/car.svg -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/chevron.svg -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/foot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/foot.svg -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/hike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/hike.svg -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/motorcycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/motorcycle.svg -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/mtb-bicycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/mtb-bicycle.svg -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/profileIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/profileIcons.ts -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/question_mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/question_mark.svg -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/racingbike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/racingbike.svg -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/scooter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/scooter.svg -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/small_truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/small_truck.svg -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/truck.svg -------------------------------------------------------------------------------- /src/sidebar/search/routingProfiles/wheelchair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/routingProfiles/wheelchair.svg -------------------------------------------------------------------------------- /src/sidebar/search/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/search/send.svg -------------------------------------------------------------------------------- /src/sidebar/times-solid-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/times-solid-thin.svg -------------------------------------------------------------------------------- /src/sidebar/times-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/times-solid.svg -------------------------------------------------------------------------------- /src/sidebar/toggle_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/toggle_off.svg -------------------------------------------------------------------------------- /src/sidebar/toggle_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/toggle_on.svg -------------------------------------------------------------------------------- /src/sidebar/unfold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/unfold.svg -------------------------------------------------------------------------------- /src/sidebar/unfold_less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/sidebar/unfold_less.svg -------------------------------------------------------------------------------- /src/stores/ApiInfoStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/ApiInfoStore.ts -------------------------------------------------------------------------------- /src/stores/CurrentLocationStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/CurrentLocationStore.ts -------------------------------------------------------------------------------- /src/stores/Dispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/Dispatcher.ts -------------------------------------------------------------------------------- /src/stores/ErrorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/ErrorStore.ts -------------------------------------------------------------------------------- /src/stores/MapActionReceiver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/MapActionReceiver.ts -------------------------------------------------------------------------------- /src/stores/MapFeatureStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/MapFeatureStore.ts -------------------------------------------------------------------------------- /src/stores/MapOptionsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/MapOptionsStore.ts -------------------------------------------------------------------------------- /src/stores/POIsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/POIsStore.ts -------------------------------------------------------------------------------- /src/stores/PathDetailsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/PathDetailsStore.ts -------------------------------------------------------------------------------- /src/stores/QueryStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/QueryStore.ts -------------------------------------------------------------------------------- /src/stores/RouteStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/RouteStore.ts -------------------------------------------------------------------------------- /src/stores/SettingsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/SettingsStore.ts -------------------------------------------------------------------------------- /src/stores/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/Store.ts -------------------------------------------------------------------------------- /src/stores/Stores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/stores/Stores.ts -------------------------------------------------------------------------------- /src/translation/Translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/translation/Translation.ts -------------------------------------------------------------------------------- /src/translation/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/translation/tr.json -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/Converters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/test/Converters.test.ts -------------------------------------------------------------------------------- /test/DummyApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/test/DummyApi.ts -------------------------------------------------------------------------------- /test/NavBar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/test/NavBar.test.ts -------------------------------------------------------------------------------- /test/Translation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/test/Translation.test.ts -------------------------------------------------------------------------------- /test/findNextWayPoint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/test/findNextWayPoint.test.ts -------------------------------------------------------------------------------- /test/poi/AddressParseResult.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/test/poi/AddressParseResult.test.ts -------------------------------------------------------------------------------- /test/routing/Api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/test/routing/Api.test.ts -------------------------------------------------------------------------------- /test/stores/ApiInfoStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/test/stores/ApiInfoStore.test.ts -------------------------------------------------------------------------------- /test/stores/QueryStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/test/stores/QueryStore.test.ts -------------------------------------------------------------------------------- /test/stores/RouteStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/test/stores/RouteStore.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/tsconfig.json -------------------------------------------------------------------------------- /update-translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/update-translations.py -------------------------------------------------------------------------------- /webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/webpack.common.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphhopper/graphhopper-maps/HEAD/webpack.prod.js --------------------------------------------------------------------------------