├── .github └── FUNDING.yml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── MarkdownDictPlugin.ts ├── README.md ├── eslint.config.mjs ├── markdown-loader.js ├── nginx-config ├── package.json ├── patches └── @restart+ui+1.9.4.patch ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── samples └── complex.gpx ├── sitemap-generator ├── .gitignore ├── index.ts ├── objects.ts └── tsconfig.json ├── src ├── actions │ ├── authActions.ts │ ├── changesetsActions.ts │ ├── drawingLineActions.ts │ ├── drawingPointActions.ts │ ├── elevationChartActions.ts │ ├── galleryActions.ts │ ├── index.ts │ ├── l10nActions.ts │ ├── mainActions.ts │ ├── mapActions.ts │ ├── mapDetailsActions.ts │ ├── mapsActions.ts │ ├── objectsActions.ts │ ├── osmActions.ts │ ├── routePlannerActions.ts │ ├── rpcActions.ts │ ├── searchActions.ts │ ├── toastsActions.ts │ ├── trackViewerActions.ts │ ├── trackingActions.ts │ ├── websocketActions.ts │ └── wikiActions.ts ├── cache.ts ├── cancelRegister.ts ├── categories.json ├── clipboardUtils.ts ├── components │ ├── AboutModal.tsx │ ├── AccountModal.tsx │ ├── Ad.tsx │ ├── AreaInfo.tsx │ ├── AsyncComponent.tsx │ ├── AsyncModal.tsx │ ├── Attribution.tsx │ ├── AuthProviders.tsx │ ├── BuyCreditsModal.tsx │ ├── ChangesetDetails.tsx │ ├── ChangesetsMenu.tsx │ ├── ChangesetsResult.tsx │ ├── Checkbox.tsx │ ├── CookieConsent.tsx │ ├── CopyrightButton.tsx │ ├── CredistAlert.tsx │ ├── CreditsText.tsx │ ├── CurrentDrawingPropertiesModal.tsx │ ├── DateTime.tsx │ ├── DeleteButton.tsx │ ├── DistanceInfo.tsx │ ├── DocumentModal.tsx │ ├── DownloadMapModal.tsx │ ├── DrawingLinePointSelection.tsx │ ├── DrawingLineResult.tsx │ ├── DrawingLineSelection.tsx │ ├── DrawingLinesResult.tsx │ ├── DrawingLinesTool.tsx │ ├── DrawingMenu.tsx │ ├── DrawingPointSelection.tsx │ ├── DrawingPointsResult.tsx │ ├── DrawingPointsTool.tsx │ ├── DrawingRecentColors.tsx │ ├── ElevationChart.tsx │ ├── ElevationChartActivePoint.tsx │ ├── ElevationInfo.tsx │ ├── EmbedMapModal.tsx │ ├── Emoji.tsx │ ├── ErrorCatcher.tsx │ ├── ExperimentalFunction.tsx │ ├── ExportMapFeaturesModal.tsx │ ├── ExportMapModal.tsx │ ├── HomeLocationPickingMenu.tsx │ ├── HomeLocationPickingResult.tsx │ ├── Hotline.ts │ ├── InfoBar.tsx │ ├── Layers.tsx │ ├── LegacyMapsLegend.tsx │ ├── LegendModal.tsx │ ├── LocationResult.tsx │ ├── LoginModal.tsx │ ├── LongPressTooltip.tsx │ ├── Main.tsx │ ├── MapContextMenu.tsx │ ├── MapControls.tsx │ ├── MapDetailsMenu.tsx │ ├── MapDetailsTool.tsx │ ├── MapSwitchButton.tsx │ ├── MaplibreLayer.tsx │ ├── MapsMenu.tsx │ ├── MapsModal.tsx │ ├── MaptilerAttribution.tsx │ ├── ObjectDetails.tsx │ ├── ObjectSelection.tsx │ ├── ObjectsMenu.tsx │ ├── ObjectsResult.tsx │ ├── OpenInExternalAppMenuButton.tsx │ ├── OpenInExternalAppMenuItems.tsx │ ├── OutdoorMapLegend.tsx │ ├── PredefinedDrawingPropertiesModal.tsx │ ├── PremiumActivationModal.tsx │ ├── ProjectPointModal.tsx │ ├── Results.tsx │ ├── RichMarker.tsx │ ├── RoutePlannerMenu.tsx │ ├── RoutePlannerResult.tsx │ ├── RoutePointSelection.tsx │ ├── ScaledTileLayer.tsx │ ├── SearchMenu.tsx │ ├── SearchResults.tsx │ ├── SearchSelection.tsx │ ├── Selection.tsx │ ├── SelectionTool.tsx │ ├── ShortcutRecorder.tsx │ ├── SourceName.ts │ ├── Toast.tsx │ ├── Toasts.tsx │ ├── ToolMenu.tsx │ ├── Toolbar.tsx │ ├── Tools.tsx │ ├── TrackViewerDetails.tsx │ ├── TrackViewerMenu.tsx │ ├── TrackViewerResult.tsx │ ├── TrackViewerUploadModal.tsx │ ├── TrackingSelection.tsx │ ├── TranslationProvider.tsx │ ├── WikiLayer.tsx │ ├── WmsMapLegend.tsx │ ├── WmsTileLayer.ts │ ├── gallery │ │ ├── Azimuth.tsx │ │ ├── GalleryEditForm.tsx │ │ ├── GalleryFilterModal.tsx │ │ ├── GalleryLayer.tsx │ │ ├── GalleryMenu.tsx │ │ ├── GalleryModals.tsx │ │ ├── GalleryPicker.tsx │ │ ├── GalleryPositionPickingMenu.tsx │ │ ├── GalleryResult.tsx │ │ ├── GalleryShowPositionMenu.tsx │ │ ├── GalleryUploadItem.tsx │ │ ├── GalleryUploadModal.tsx │ │ ├── GalleryViewerModal.tsx │ │ ├── PictureLegend.tsx │ │ ├── RecentTags.tsx │ │ ├── galleryLayerWorker.ts │ │ └── galleryTileRenderrer.ts │ ├── mainMenu │ │ ├── GalleryColorizeBySubmenu.tsx │ │ ├── HelpSubmenu.tsx │ │ ├── LanguageLabel.tsx │ │ ├── LanguageSubmenu.tsx │ │ ├── MainMenu.tsx │ │ ├── MainMenuButton.tsx │ │ ├── OfflineSubmenu.tsx │ │ ├── SocialButtons.tsx │ │ ├── SubmenuHeader.tsx │ │ ├── TrackingSubmenu.tsx │ │ └── submenu.ts │ ├── mapSettings │ │ ├── CustomMapForm.tsx │ │ ├── CustomMapsSettings.tsx │ │ ├── MapLayersSettings.tsx │ │ └── MapSettingsModal.tsx │ ├── parameterizedShading │ │ ├── DataWriter.ts │ │ ├── Shading.tsx │ │ ├── ShadingComponentControl.tsx │ │ ├── ShadingControl.tsx │ │ ├── ShadingLayer.tsx │ │ ├── shading.wgsl │ │ └── shadingLayerWorker.ts │ ├── supportUsModal │ │ ├── AsyncSupportUsModal.tsx │ │ ├── SupportUsModal.tsx │ │ └── translations │ │ │ ├── .gitignore │ │ │ ├── SupportUsMessages.ts │ │ │ ├── cs.template.tsx │ │ │ ├── de.template.tsx │ │ │ ├── en.tsx │ │ │ ├── hu.template.tsx │ │ │ ├── it.template.tsx │ │ │ ├── pl.template.tsx │ │ │ └── sk.template.tsx │ ├── tracking │ │ ├── AccessToken.tsx │ │ ├── AccessTokenForm.tsx │ │ ├── AccessTokens.tsx │ │ ├── Device.tsx │ │ ├── DeviceForm.tsx │ │ ├── Devices.tsx │ │ ├── TrackedDevice.tsx │ │ ├── TrackedDeviceForm.tsx │ │ ├── TrackedDevices.tsx │ │ ├── TrackingModal.tsx │ │ ├── TrackingPoint.tsx │ │ └── TrackingResult.tsx │ ├── useAttributionInfo.ts │ ├── useHtmlMeta.ts │ └── withContextTooltip.tsx ├── constants.ts ├── coordinatesParser.ts ├── copyDisplayName.ts ├── dateUtils.ts ├── deepPartial.ts ├── distanceFormatter.ts ├── documents │ ├── attribution.en.md │ ├── attribution.sk.md │ ├── dvePercenta.sk.md │ ├── exports.en.md │ ├── exports.it.md │ ├── exports.sk.md │ ├── freemap.en.md │ ├── freemap.sk.md │ ├── garmin.en.md │ ├── garmin.sk.md │ ├── geocaching.en.md │ ├── geocaching.sk.md │ ├── index.tsx │ ├── osm.en.md │ ├── osm.sk.md │ ├── privacyPolicy.en.md │ ├── privacyPolicy.sk.md │ ├── shortcuts.en.md │ └── shortcuts.sk.md ├── export │ ├── fetchPictures.ts │ ├── garminExport.ts │ ├── garminExportProcessorHandler.ts │ ├── geojsonExportProcessorHandler.ts │ ├── gpxExportProcessorHandler.ts │ ├── gpxExporter.ts │ └── upload.ts ├── externalUrlUtils.ts ├── fbLoader.ts ├── fixedPopperConfig.ts ├── galleryUtils.ts ├── gapiLoader.ts ├── garminLoginMessageHandler.ts ├── geoutils.ts ├── globalErrorHandler.ts ├── hooks │ ├── useAd.ts │ ├── useAppSelector.ts │ ├── useBecomePremium.ts │ ├── useCheckboxInputState.ts │ ├── useCopyButton.tsx │ ├── useDateTimeFormat.ts │ ├── useEffectiveChosenLanguage.ts │ ├── useGpxDropHandler.ts │ ├── useLazy.ts │ ├── useLeftMarginAdjuster.ts │ ├── useMap.ts │ ├── useMenuHandler.ts │ ├── useModelChangeHandlers.ts │ ├── useMouseCursor.ts │ ├── useNumberFormat.ts │ ├── useOnline.ts │ ├── usePersistentState.ts │ ├── usePictureDropHandler.ts │ ├── useScrollClasses.ts │ ├── useShareFile.ts │ ├── useShow.ts │ ├── useStartFinishPoints.ts │ └── useTextInputState.ts ├── httpRequest.ts ├── imagePreview.ts ├── images │ ├── 1x1-black.png │ ├── 1x1-transparent.png │ ├── 1x1-white.png │ ├── cursors │ │ ├── marker.svg │ │ └── pencil.svg │ ├── fm-t-shirt.jpg │ ├── freemap-logo-print.png │ ├── freemap-logo-small.png │ ├── freemap-logo.png │ ├── logo.jpg │ ├── marker-icon-2x-green.png │ ├── marker-icon-2x-red.png │ ├── marker-icon-green.png │ ├── marker-icon-red.png │ ├── missing-tile-256x256.png │ ├── poiIcons │ │ ├── aerodrome.svg │ │ ├── alpine_hut.svg │ │ ├── apartment.svg │ │ ├── arch.svg │ │ ├── archaeological_site.svg │ │ ├── arts_centre.svg │ │ ├── artwork.svg │ │ ├── atm.svg │ │ ├── attraction.svg │ │ ├── bank.svg │ │ ├── bar.svg │ │ ├── bare_rock.svg │ │ ├── basic_hut.svg │ │ ├── bbq.svg │ │ ├── beach_resort.svg │ │ ├── beehive.svg │ │ ├── bell_tower.svg │ │ ├── bench.svg │ │ ├── bicycle.svg │ │ ├── bicycle_parking.svg │ │ ├── bicycle_repair_station.svg │ │ ├── biergarten.svg │ │ ├── bird_hide.svg │ │ ├── board.svg │ │ ├── boat_rental.svg │ │ ├── boundary_stone.svg │ │ ├── building.svg │ │ ├── bunker.svg │ │ ├── bureau_de_change.svg │ │ ├── bus_station.svg │ │ ├── bus_stop.svg │ │ ├── bust.svg │ │ ├── butcher.svg │ │ ├── cafe.svg │ │ ├── camp_site.svg │ │ ├── car_repair.svg │ │ ├── car_wash.svg │ │ ├── casino.svg │ │ ├── castle.svg │ │ ├── cattle_grid.svg │ │ ├── cave_entrance.svg │ │ ├── chalet.svg │ │ ├── charging_station.svg │ │ ├── chimney.svg │ │ ├── church.svg │ │ ├── cinema.svg │ │ ├── city_gate.svg │ │ ├── cliff.svg │ │ ├── climbing.svg │ │ ├── community_centre.svg │ │ ├── confectionery.svg │ │ ├── convenience.svg │ │ ├── courthouse.svg │ │ ├── cross.svg │ │ ├── cycle_barrier.svg │ │ ├── dentist.svg │ │ ├── doctors.svg │ │ ├── drinking_spring.svg │ │ ├── drinking_water.svg │ │ ├── dyke.svg │ │ ├── earth_bank.svg │ │ ├── education │ │ │ ├── college.svg │ │ │ ├── nursery.svg │ │ │ ├── school.svg │ │ │ └── university.svg │ │ ├── elevator.svg │ │ ├── embankment-half.svg │ │ ├── embankment.svg │ │ ├── emergency_phone.svg │ │ ├── excrement_bags.svg │ │ ├── fast_food.svg │ │ ├── fell.svg │ │ ├── ferry.svg │ │ ├── fire_station.svg │ │ ├── firepit.svg │ │ ├── fishing.svg │ │ ├── fixme.svg │ │ ├── ford.svg │ │ ├── forester's_lodge.svg │ │ ├── fort.svg │ │ ├── fortress.svg │ │ ├── fountain.svg │ │ ├── free_flying.svg │ │ ├── fuel.svg │ │ ├── gate.svg │ │ ├── golf.svg │ │ ├── grapes.svg │ │ ├── grave.svg │ │ ├── guest_house.svg │ │ ├── guidepost.svg │ │ ├── guidepost_x.svg │ │ ├── guidepost_xx.svg │ │ ├── gully.svg │ │ ├── highway-arrow.svg │ │ ├── highway-arrow.svg.2021_11_11_21_50_55.0.svg │ │ ├── horse.svg │ │ ├── horse_riding.svg │ │ ├── hospital.svg │ │ ├── hostel.svg │ │ ├── hot_spring.svg │ │ ├── hotel.svg │ │ ├── hunting_stand.svg │ │ ├── hut.svg │ │ ├── ice_cream.svg │ │ ├── internet_cafe.svg │ │ ├── kissing_gate.svg │ │ ├── lean_to.svg │ │ ├── library.svg │ │ ├── lift_gate.svg │ │ ├── lighthouse.svg │ │ ├── manger.svg │ │ ├── manor.svg │ │ ├── map.svg │ │ ├── mast_other.svg │ │ ├── memorial.svg │ │ ├── memorial_stone.svg │ │ ├── military_area.svg │ │ ├── mine.svg │ │ ├── miniature_golf.svg │ │ ├── monument.svg │ │ ├── motel.svg │ │ ├── motorcycle_barrier.svg │ │ ├── motorcycle_parking.svg │ │ ├── museum.svg │ │ ├── national_park_area.svg │ │ ├── nightclub.svg │ │ ├── no_bicycle.svg │ │ ├── no_bicycle_alt.svg │ │ ├── no_bicycle_foot.svg │ │ ├── no_foot.svg │ │ ├── not_drinking_spring.svg │ │ ├── obelisk.svg │ │ ├── office.svg │ │ ├── orchard.svg │ │ ├── outdoor_seating.svg │ │ ├── palace.svg │ │ ├── parking.svg │ │ ├── parking_tickets.svg │ │ ├── peak.svg │ │ ├── pharmacy.svg │ │ ├── picnic_shelter.svg │ │ ├── picnic_site.svg │ │ ├── picnic_table.svg │ │ ├── place_of_worship.svg │ │ ├── plant_nursery.svg │ │ ├── plaque.svg │ │ ├── playground.svg │ │ ├── police.svg │ │ ├── post_box.svg │ │ ├── post_office.svg │ │ ├── power_pole.svg │ │ ├── power_tower.svg │ │ ├── prison.svg │ │ ├── protected_area.svg │ │ ├── pub.svg │ │ ├── public_bath.svg │ │ ├── public_bookcase.svg │ │ ├── public_transport.svg │ │ ├── public_transport_tickets.svg │ │ ├── quarry.svg │ │ ├── recycling.svg │ │ ├── refitted_drinking_spring.svg │ │ ├── refitted_not_drinking_spring.svg │ │ ├── refitted_spring.svg │ │ ├── rental_bicycle.svg │ │ ├── rental_car.svg │ │ ├── restaurant.svg │ │ ├── rock.svg │ │ ├── ruins.svg │ │ ├── saddle.svg │ │ ├── sand.svg │ │ ├── sauna.svg │ │ ├── scree.svg │ │ ├── scrub.svg │ │ ├── shelter-alt.svg │ │ ├── shelter.svg │ │ ├── shooting.svg │ │ ├── shop │ │ │ ├── alcohol.svg │ │ │ ├── art.svg │ │ │ ├── bag.svg │ │ │ ├── bakery.svg │ │ │ ├── beauty.svg │ │ │ ├── bed.svg │ │ │ ├── beverages.svg │ │ │ ├── bicycle.svg │ │ │ ├── book.svg │ │ │ ├── bookmaker.svg │ │ │ ├── butcher.svg │ │ │ ├── car.svg │ │ │ ├── car_parts.svg │ │ │ ├── car_repair.svg │ │ │ ├── carpet.svg │ │ │ ├── charity.svg │ │ │ ├── chemist.svg │ │ │ ├── clothes.svg │ │ │ ├── coffee.svg │ │ │ ├── computer.svg │ │ │ ├── confectionery.svg │ │ │ ├── convenience.svg │ │ │ ├── copyshop.svg │ │ │ ├── dairy.svg │ │ │ ├── deli.svg │ │ │ ├── department_store.svg │ │ │ ├── diy.svg │ │ │ ├── electronics.svg │ │ │ ├── fabric.svg │ │ │ ├── florist.svg │ │ │ ├── furniture.svg │ │ │ ├── garden_centre.svg │ │ │ ├── gift.svg │ │ │ ├── greengrocer.svg │ │ │ ├── hairdresser.svg │ │ │ ├── hifi.svg │ │ │ ├── houseware.svg │ │ │ ├── interior_decoration.svg │ │ │ ├── jewelry.svg │ │ │ ├── laundry.svg │ │ │ ├── marketplace.svg │ │ │ ├── massage.svg │ │ │ ├── medical_supply.svg │ │ │ ├── mobile_phone.svg │ │ │ ├── music.svg │ │ │ ├── musical_instrument.svg │ │ │ ├── newsagent.svg │ │ │ ├── optician.svg │ │ │ ├── outdoor.svg │ │ │ ├── paint.svg │ │ │ ├── perfumery.svg │ │ │ ├── pet.svg │ │ │ ├── photo.svg │ │ │ ├── seafood.svg │ │ │ ├── second_hand.svg │ │ │ ├── shoes.svg │ │ │ ├── sports.svg │ │ │ ├── stationery.svg │ │ │ ├── supermarket.svg │ │ │ ├── tea.svg │ │ │ ├── ticket.svg │ │ │ ├── tobacco.svg │ │ │ ├── toys.svg │ │ │ ├── trade.svg │ │ │ ├── travel_agency.svg │ │ │ ├── tyres.svg │ │ │ ├── variety_store.svg │ │ │ ├── vending_machine.svg │ │ │ ├── video.svg │ │ │ └── video_games.svg │ │ ├── shower.svg │ │ ├── sinkhole.svg │ │ ├── ski.svg │ │ ├── social_facility.svg │ │ ├── solar.svg │ │ ├── solar_small.svg │ │ ├── sport │ │ │ ├── archery.svg │ │ │ ├── baseball.svg │ │ │ ├── canoe.svg │ │ │ ├── cricket.svg │ │ │ ├── diving.svg │ │ │ ├── golf.svg │ │ │ ├── gym.svg │ │ │ ├── gymnasium.svg │ │ │ ├── hillclimbing.svg │ │ │ ├── horse_racing.svg │ │ │ ├── iceskating.svg │ │ │ ├── jetski.svg │ │ │ ├── leisure_centre.svg │ │ │ ├── minature_golf.svg │ │ │ ├── motorracing.svg │ │ │ ├── playground.svg │ │ │ ├── sailing.svg │ │ │ ├── shooting.svg │ │ │ ├── skiing_crosscountry.svg │ │ │ ├── skiing_downhill.svg │ │ │ ├── snooker.svg │ │ │ ├── soccer.svg │ │ │ ├── stadium.svg │ │ │ ├── swimming_indoor.svg │ │ │ ├── swimming_outdoor.svg │ │ │ ├── tennis.svg │ │ │ └── windsurfing.svg │ │ ├── spring.svg │ │ ├── station.svg │ │ ├── statue.svg │ │ ├── steps.svg │ │ ├── stile.svg │ │ ├── stone.svg │ │ ├── stump.svg │ │ ├── stump_single.svg │ │ ├── supermarket.svg │ │ ├── taxi.svg │ │ ├── telephone.svg │ │ ├── temp_water.svg │ │ ├── theatre.svg │ │ ├── toilets.svg │ │ ├── toll_booth.svg │ │ ├── tower_bell_tower.svg │ │ ├── tower_communication.svg │ │ ├── tower_observation.svg │ │ ├── tower_other.svg │ │ ├── townhall.svg │ │ ├── traffic_signals.svg │ │ ├── tree.svg │ │ ├── tree2.svg │ │ ├── tree_protected.svg │ │ ├── university.svg │ │ ├── vehicle_inspection.svg │ │ ├── veterinary.svg │ │ ├── viewpoint.svg │ │ ├── waste_basket.svg │ │ ├── waste_disposal.svg │ │ ├── water_park.svg │ │ ├── water_tower.svg │ │ ├── water_well.svg │ │ ├── water_works.svg │ │ ├── waterfall.svg │ │ ├── watering_place.svg │ │ ├── waterway-arrow.svg │ │ ├── wayside_shrine.svg │ │ ├── weather_shelter.svg │ │ ├── wilderness_hut.svg │ │ └── zoo.svg │ ├── rovas_reklama.svg │ └── spinnerbar.gif ├── index.ejs ├── index.tsx ├── keyboardHandler.ts ├── l10nInjector.tsx ├── langUtils.ts ├── leafletElementHolder.ts ├── legend │ ├── data │ │ └── layers │ │ │ └── poi │ │ │ ├── accomodation │ │ │ ├── bar │ │ │ │ └── list.png │ │ │ ├── cafe │ │ │ │ └── list.png │ │ │ ├── camping │ │ │ │ └── list.png │ │ │ ├── fast_food │ │ │ │ └── list.png │ │ │ ├── guest_house │ │ │ │ └── list.png │ │ │ ├── hostel │ │ │ │ └── list.png │ │ │ ├── hotel │ │ │ │ └── list.png │ │ │ ├── motel │ │ │ │ └── list.png │ │ │ ├── pub │ │ │ │ └── list.png │ │ │ └── restaurant │ │ │ │ └── list.png │ │ │ ├── cycling │ │ │ ├── bicycle │ │ │ │ └── list.png │ │ │ ├── bicycle_parking │ │ │ │ └── list.png │ │ │ ├── bicycle_rental │ │ │ │ └── list.png │ │ │ └── stand │ │ │ │ └── list.png │ │ │ ├── education │ │ │ ├── college │ │ │ │ └── list.png │ │ │ ├── driving_school │ │ │ │ └── list.png │ │ │ ├── kindergarten │ │ │ │ └── list.png │ │ │ ├── school │ │ │ │ └── list.png │ │ │ └── university │ │ │ │ └── list.png │ │ │ ├── health │ │ │ ├── clinic │ │ │ │ └── list.png │ │ │ ├── dentist │ │ │ │ └── list.png │ │ │ ├── doctor │ │ │ │ └── list.png │ │ │ ├── emergency │ │ │ │ └── list.png │ │ │ ├── hospital │ │ │ │ └── list.png │ │ │ ├── pharmacy │ │ │ │ └── list.png │ │ │ └── veterinary │ │ │ │ └── list.png │ │ │ ├── hiking │ │ │ ├── alpine_hut │ │ │ │ └── list.png │ │ │ ├── attraction │ │ │ │ └── list.png │ │ │ ├── feeding │ │ │ │ └── list.png │ │ │ ├── fireplace │ │ │ │ └── list.png │ │ │ ├── hunting_stand │ │ │ │ └── list.png │ │ │ ├── map │ │ │ │ └── list.png │ │ │ ├── picnic_site │ │ │ │ └── list.png │ │ │ ├── ranger_house │ │ │ │ └── list.png │ │ │ ├── shelter │ │ │ │ └── list.png │ │ │ ├── stand │ │ │ │ └── list.png │ │ │ ├── tower_observation │ │ │ │ └── list.png │ │ │ └── wilderness_hut │ │ │ │ └── list.png │ │ │ ├── landmark │ │ │ ├── battlefield │ │ │ │ └── list.png │ │ │ ├── castle │ │ │ │ └── list.png │ │ │ ├── chapel │ │ │ │ └── list.png │ │ │ ├── chateau │ │ │ │ └── list.png │ │ │ ├── memorial │ │ │ │ └── list.png │ │ │ ├── monument │ │ │ │ └── list.png │ │ │ ├── museum │ │ │ │ └── list.png │ │ │ ├── place_of_worship │ │ │ │ └── list.png │ │ │ ├── ruins │ │ │ │ └── list.png │ │ │ ├── sculpture │ │ │ │ └── list.png │ │ │ ├── wayside_cross │ │ │ │ └── list.png │ │ │ └── wayside_shrine │ │ │ │ └── list.png │ │ │ ├── leisure │ │ │ ├── golf_course │ │ │ │ └── list.png │ │ │ └── miniature_golf │ │ │ │ └── list.png │ │ │ ├── nature │ │ │ ├── boundary_monument │ │ │ │ └── list.png │ │ │ ├── boundary_protected_site │ │ │ │ └── list.png │ │ │ ├── boundary_reserve │ │ │ │ └── list.png │ │ │ ├── cave_entrance │ │ │ │ └── list.png │ │ │ ├── peak │ │ │ │ └── list.png │ │ │ ├── protected_tree │ │ │ │ └── list.png │ │ │ ├── spring │ │ │ │ └── list.png │ │ │ ├── viewpoint │ │ │ │ └── list.png │ │ │ └── waterfall │ │ │ │ └── list.png │ │ │ ├── other │ │ │ ├── adit │ │ │ │ └── list.png │ │ │ ├── bunker │ │ │ │ └── list.png │ │ │ ├── chimney │ │ │ │ └── list.png │ │ │ ├── mineshaft │ │ │ │ └── list.png │ │ │ ├── prison │ │ │ │ └── list.png │ │ │ ├── tower_communication │ │ │ │ └── list.png │ │ │ ├── water_tower │ │ │ │ └── list.png │ │ │ ├── water_well │ │ │ │ └── list.png │ │ │ ├── windmill │ │ │ │ └── list.png │ │ │ └── zoo │ │ │ │ └── list.png │ │ │ ├── place │ │ │ ├── city │ │ │ │ └── list.png │ │ │ ├── county │ │ │ │ └── list.png │ │ │ ├── hamlet │ │ │ │ └── list.png │ │ │ ├── locality │ │ │ │ └── list.png │ │ │ ├── region │ │ │ │ └── list.png │ │ │ ├── suburb │ │ │ │ └── list.png │ │ │ ├── town │ │ │ │ └── list.png │ │ │ └── village │ │ │ │ └── list.png │ │ │ ├── power │ │ │ ├── fossil │ │ │ │ └── list.png │ │ │ ├── hydro │ │ │ │ └── list.png │ │ │ ├── nuclear │ │ │ │ └── list.png │ │ │ └── wind │ │ │ │ └── list.png │ │ │ ├── services │ │ │ ├── atm │ │ │ │ └── list.png │ │ │ ├── bank │ │ │ │ └── list.png │ │ │ ├── car_wash │ │ │ │ └── list.png │ │ │ ├── drinking_water │ │ │ │ └── list.png │ │ │ ├── firestation │ │ │ │ └── list.png │ │ │ ├── fuel │ │ │ │ └── list.png │ │ │ ├── library │ │ │ │ └── list.png │ │ │ ├── parking │ │ │ │ └── list.png │ │ │ ├── police │ │ │ │ └── list.png │ │ │ ├── post_office │ │ │ │ └── list.png │ │ │ ├── taxi │ │ │ │ └── list.png │ │ │ ├── telephone │ │ │ │ └── list.png │ │ │ ├── toilets │ │ │ │ └── list.png │ │ │ └── townhall │ │ │ │ └── list.png │ │ │ ├── shopping │ │ │ ├── alcohol │ │ │ │ └── list.png │ │ │ ├── bakery │ │ │ │ └── list.png │ │ │ ├── books │ │ │ │ └── list.png │ │ │ ├── butcher │ │ │ │ └── list.png │ │ │ ├── car │ │ │ │ └── list.png │ │ │ ├── car_repair │ │ │ │ └── list.png │ │ │ ├── chemist │ │ │ │ └── list.png │ │ │ ├── clothes │ │ │ │ └── list.png │ │ │ ├── computer │ │ │ │ └── list.png │ │ │ ├── confectionery │ │ │ │ └── list.png │ │ │ ├── convenience │ │ │ │ └── list.png │ │ │ ├── department_store │ │ │ │ └── list.png │ │ │ ├── doityourself │ │ │ │ └── list.png │ │ │ ├── dry_cleaning │ │ │ │ └── list.png │ │ │ ├── electronics │ │ │ │ └── list.png │ │ │ ├── erotic │ │ │ │ └── list.png │ │ │ ├── florist │ │ │ │ └── list.png │ │ │ ├── furniture │ │ │ │ └── list.png │ │ │ ├── garden_centre │ │ │ │ └── list.png │ │ │ ├── general │ │ │ │ └── list.png │ │ │ ├── greengrocer │ │ │ │ └── list.png │ │ │ ├── hairdresser │ │ │ │ └── list.png │ │ │ ├── hardware │ │ │ │ └── list.png │ │ │ ├── ice_cream │ │ │ │ └── list.png │ │ │ ├── jewelry │ │ │ │ └── list.png │ │ │ ├── kiosk │ │ │ │ └── list.png │ │ │ ├── laundry │ │ │ │ └── list.png │ │ │ ├── mall │ │ │ │ └── list.png │ │ │ ├── marketplace │ │ │ │ └── list.png │ │ │ ├── newsagent │ │ │ │ └── list.png │ │ │ ├── optician │ │ │ │ └── list.png │ │ │ ├── organic │ │ │ │ └── list.png │ │ │ ├── outdoor │ │ │ │ └── list.png │ │ │ ├── shoes │ │ │ │ └── list.png │ │ │ ├── sports │ │ │ │ └── list.png │ │ │ ├── stationery │ │ │ │ └── list.png │ │ │ ├── supermarket │ │ │ │ └── list.png │ │ │ ├── toys │ │ │ │ └── list.png │ │ │ └── video │ │ │ │ └── list.png │ │ │ ├── sport │ │ │ ├── 10pin │ │ │ │ └── list.png │ │ │ ├── archery │ │ │ │ └── list.png │ │ │ ├── athletics │ │ │ │ └── list.png │ │ │ ├── baseball │ │ │ │ └── list.png │ │ │ ├── basketball │ │ │ │ └── list.png │ │ │ ├── beachvolleyball │ │ │ │ └── list.png │ │ │ ├── boules │ │ │ │ └── list.png │ │ │ ├── bowls │ │ │ │ └── list.png │ │ │ ├── canoe │ │ │ │ └── list.png │ │ │ ├── climbing │ │ │ │ └── list.png │ │ │ ├── cycling │ │ │ │ └── list.png │ │ │ ├── dog_racing │ │ │ │ └── list.png │ │ │ ├── ecycle_charging │ │ │ │ └── list.png │ │ │ ├── equestrian │ │ │ │ └── list.png │ │ │ ├── football │ │ │ │ └── list.png │ │ │ ├── golf │ │ │ │ └── list.png │ │ │ ├── gym │ │ │ │ └── list.png │ │ │ ├── gymnastics │ │ │ │ └── list.png │ │ │ ├── hanggliding │ │ │ │ └── list.png │ │ │ ├── hockey │ │ │ │ └── list.png │ │ │ ├── horse_racing │ │ │ │ └── list.png │ │ │ ├── motor │ │ │ │ └── list.png │ │ │ ├── multi │ │ │ │ └── list.png │ │ │ ├── paragliding │ │ │ │ └── list.png │ │ │ ├── shooting │ │ │ │ └── list.png │ │ │ ├── skateboard │ │ │ │ └── list.png │ │ │ ├── skating │ │ │ │ └── list.png │ │ │ ├── skiing │ │ │ │ └── list.png │ │ │ ├── soccer │ │ │ │ └── list.png │ │ │ ├── swimming │ │ │ │ └── list.png │ │ │ ├── table_tennis │ │ │ │ └── list.png │ │ │ ├── team_handball │ │ │ │ └── list.png │ │ │ ├── tennis │ │ │ │ └── list.png │ │ │ ├── volleyball │ │ │ │ └── list.png │ │ │ └── water_ski │ │ │ │ └── list.png │ │ │ └── transport │ │ │ ├── airport │ │ │ └── list.png │ │ │ ├── border_control │ │ │ └── list.png │ │ │ ├── bus_station │ │ │ └── list.png │ │ │ ├── bus_stop │ │ │ └── list.png │ │ │ ├── halt │ │ │ └── list.png │ │ │ ├── helipad │ │ │ └── list.png │ │ │ ├── level_crossing │ │ │ └── list.png │ │ │ ├── traffic_signals │ │ │ └── list.png │ │ │ ├── train │ │ │ └── list.png │ │ │ └── tram_stop │ │ │ └── list.png │ ├── files │ │ └── img │ │ │ └── legend │ │ │ ├── highway_trunk.jpg │ │ │ ├── hwy-mwy.png │ │ │ ├── hwy-pri.png │ │ │ ├── hwy-res.png │ │ │ ├── hwy-sec.png │ │ │ ├── hwy-ser.png │ │ │ ├── hwy-ter.png │ │ │ ├── hwy-tr2.png │ │ │ └── hwy-tr4.png │ └── index.json ├── locationChangeHandler.ts ├── mapDefinitions.tsx ├── mapStateHandler.ts ├── mapUtils.ts ├── maplibre-language.ts ├── middlewares │ ├── errorHandlingMiddleware.ts │ ├── processorMiddleware.ts │ ├── statePersistingMiddleware.ts │ ├── trackingMiddleware.ts │ └── webSocketMiddleware.ts ├── navigationUtils.ts ├── numberValidator.ts ├── oldFreemapUtils.ts ├── osm │ ├── .gitignore │ ├── osmNameResolver.ts │ ├── osmTagToIconMapping.ts │ ├── osmTagToNameMapping-cs.template.ts │ ├── osmTagToNameMapping-de.template.ts │ ├── osmTagToNameMapping-en.ts │ ├── osmTagToNameMapping-hu.template.ts │ ├── osmTagToNameMapping-it.template.ts │ ├── osmTagToNameMapping-pl.template.ts │ ├── osmTagToNameMapping-sk.template.ts │ ├── osmTagToNameMapping-xx.template.ts │ ├── osmTagToNameMappingType.ts │ ├── types.ts │ └── useGenericNameResolver.ts ├── osmLoginMessageHandler.ts ├── pica-gpu │ ├── gl-helper.ts │ ├── index.ts │ ├── resize.ts │ └── shaders.ts ├── premium.ts ├── processors.ts ├── processors │ ├── authDeleteAccountProcessor.ts │ ├── authDisconnectProcessor.ts │ ├── authDisconnectProcessorHandler.ts │ ├── authInitProcessor.ts │ ├── authLogoutProcessor.ts │ ├── authWithFacebookProcessor.ts │ ├── authWithFacebookProcessorHandler.ts │ ├── authWithGarmin2Processor.ts │ ├── authWithGarmin2ProcessorHandler.ts │ ├── authWithGarminProcessor.ts │ ├── authWithGarminProcessorHandler.ts │ ├── authWithGoogleProcessor.ts │ ├── authWithGoogleProcessorHandler.ts │ ├── authWithOsm2Processor.ts │ ├── authWithOsm2ProcessorHandler.ts │ ├── authWithOsmProcessor.ts │ ├── authWithOsmProcessorHandler.ts │ ├── cancelProcessor.ts │ ├── changesetsProcessor.ts │ ├── convertToDrawingProcessor.ts │ ├── cookieConsentProcessor.ts │ ├── deleteProcessor.ts │ ├── downloadMapProcessor.ts │ ├── downloadMapProcessorHandler.ts │ ├── elevationChartProcessor.ts │ ├── elevationChartProcessorHandler.ts │ ├── errorProcessor.ts │ ├── exportMapFeaturesProcessor.ts │ ├── fetchPurchasesProcessor.ts │ ├── galleryDeletePictureProcessor.ts │ ├── galleryFetchUsersProcessor.ts │ ├── galleryItemUploadProcessor.ts │ ├── galleryItemUploadProcessorHandler.ts │ ├── galleryMakeAllPremiumOrFreeProcessor.ts │ ├── galleryQuickAddTagProcessor.ts │ ├── galleryRequestImageProcessor.ts │ ├── galleryRequestImagesByOrderProcessor.ts │ ├── galleryRequestImagesByRadiusProcessor.ts │ ├── gallerySavePictureProcessor.ts │ ├── gallerySetItemForPositionPickingProcessor.ts │ ├── galleryShowImageGaProcessor.ts │ ├── galleryShowOnTheMapProcessor.ts │ ├── gallerySubmitCommentProcessor.ts │ ├── gallerySubmitStarsProcessor.ts │ ├── galleryUploadModalProcessor.ts │ ├── getCountriesProcessor.ts │ ├── l10nSetLanguageProcessor.ts │ ├── legacyMapWarningProcessor.ts │ ├── legendProcessor.ts │ ├── locateProcessor.ts │ ├── loginResponseHandler.ts │ ├── mapDetailsProcessorHandler.ts │ ├── mapExportProcessor.ts │ ├── mapExportProcessorHandler.ts │ ├── mapRefocusProcessor.ts │ ├── mapTypeGaProcessor.ts │ ├── mapsDeleteProcessor.ts │ ├── mapsLoadListProcessor.ts │ ├── mapsLoadProcessor.ts │ ├── mapsSaveProcessor.ts │ ├── measurementProcessor.ts │ ├── objectsFetchProcessor.ts │ ├── openInExternalAppProcessor.ts │ ├── osmLoadNodeProcessor.ts │ ├── osmLoadRelationProcessor.ts │ ├── osmLoadWayProcessor.ts │ ├── purchaseProcessor.ts │ ├── routePlannerFindRouteProcessor.ts │ ├── routePlannerFindRouteProcessorHandler.ts │ ├── routePlannerRefocusMapProcessor.ts │ ├── routePlannerSetFromCurrentPositionProcessor.ts │ ├── routePlannerToggleElevationChartProcessor.ts │ ├── rpcProcessors.ts │ ├── saveHomeLocationProcessor.ts │ ├── saveSettingsProcessor.ts │ ├── searchHighlightProcessor.ts │ ├── searchProcessor.ts │ ├── searchProcessorHandler.ts │ ├── setActiveModalProcessor.ts │ ├── setToolProcessor.ts │ ├── toasts.ts │ ├── toastsAddProcessor.ts │ ├── toastsCancelTypeProcessor.ts │ ├── toastsRemoveProcessor.ts │ ├── toastsRestartTimeoutProcessor.ts │ ├── toastsStopTimeoutProcessor.ts │ ├── trackViewerDownloadTrackProcessor.ts │ ├── trackViewerGpxLoadProcessor.ts │ ├── trackViewerSetTrackDataProcessor.ts │ ├── trackViewerToggleElevationChartProcessor.ts │ ├── trackViewerUploadTrackProcessor.ts │ ├── trackingAccessTokenProcessors.ts │ ├── trackingDeviceProcessors.ts │ ├── trackingFollowProcessors.ts │ ├── urlProcessor.ts │ ├── wikiLayerProcessor.ts │ └── wikiLoadPreviewProcessor.ts ├── reducers.ts ├── reducers │ ├── authReducer.ts │ ├── changesetsReducer.ts │ ├── drawingLinesReducer.ts │ ├── drawingPointsReducer.ts │ ├── elevationChartReducer.ts │ ├── galleryReducer.ts │ ├── l10nReducer.ts │ ├── mainReducer.ts │ ├── mapDetailsReducer.ts │ ├── mapReducer.ts │ ├── mapsReducer.ts │ ├── objectsReducer.ts │ ├── routePlannerReducer.ts │ ├── searchReducer.ts │ ├── toastsReducer.ts │ ├── trackViewerReducer.ts │ ├── trackingReducer.ts │ ├── websocketReducer.ts │ └── wikiReducer.ts ├── selectors │ └── mainSelectors.ts ├── static │ ├── .htaccess │ ├── ads.txt │ ├── authCallback.html │ ├── browserconfig.xml │ ├── dropboxAuthCallback.html │ ├── favicon.ico │ ├── favicons │ │ ├── apple-touch-icon-1024x1024.png │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-167x167.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-72x72.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ ├── apple-touch-startup-image-1125x2436.png │ │ ├── apple-touch-startup-image-1136x640.png │ │ ├── apple-touch-startup-image-1242x2208.png │ │ ├── apple-touch-startup-image-1242x2688.png │ │ ├── apple-touch-startup-image-1334x750.png │ │ ├── apple-touch-startup-image-1536x2048.png │ │ ├── apple-touch-startup-image-1620x2160.png │ │ ├── apple-touch-startup-image-1668x2224.png │ │ ├── apple-touch-startup-image-1668x2388.png │ │ ├── apple-touch-startup-image-1792x828.png │ │ ├── apple-touch-startup-image-2048x1536.png │ │ ├── apple-touch-startup-image-2048x2732.png │ │ ├── apple-touch-startup-image-2160x1620.png │ │ ├── apple-touch-startup-image-2208x1242.png │ │ ├── apple-touch-startup-image-2224x1668.png │ │ ├── apple-touch-startup-image-2388x1668.png │ │ ├── apple-touch-startup-image-2436x1125.png │ │ ├── apple-touch-startup-image-2688x1242.png │ │ ├── apple-touch-startup-image-2732x2048.png │ │ ├── apple-touch-startup-image-640x1136.png │ │ ├── apple-touch-startup-image-750x1334.png │ │ ├── apple-touch-startup-image-828x1792.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-48x48.png │ │ ├── firefox_app_128x128.png │ │ ├── firefox_app_512x512.png │ │ ├── firefox_app_60x60.png │ │ ├── mstile-144x144.png │ │ ├── mstile-150x150.png │ │ ├── mstile-310x150.png │ │ ├── mstile-310x310.png │ │ └── mstile-70x70.png │ ├── freemap-logo-128.png │ ├── freemap-logo-192.png │ ├── freemap-logo-256.png │ ├── freemap-logo-384.png │ ├── freemap-logo-512.png │ ├── freemap-logo-96.png │ ├── freemap-logo.jpg │ ├── freemap-logo.png │ ├── garminAuthCallback.html │ ├── google075ab6750584f8ae.html │ ├── manifest.webmanifest │ ├── nm6hmm18y4m4cx21u2z4u5b4eamsgs.html │ ├── offline.html │ ├── pay_by_square.png │ ├── purchaseCallback.html │ └── robots.txt ├── store.ts ├── stringUtils.ts ├── styles │ ├── bootstrap-override.scss │ ├── changesets.scss │ ├── elevationChart.scss │ ├── gallery.scss │ ├── index.scss │ ├── leaflet.scss │ ├── react-tags.scss │ ├── search.scss │ ├── toasts.scss │ └── trackViewer.scss ├── subcategories.ts ├── sw │ ├── sw.ts │ └── upload-sw.ts ├── toolDefinitions.tsx ├── translations │ ├── .gitignore │ ├── cs-shared.ts │ ├── cs.template.tsx │ ├── de-shared.ts │ ├── de.template.tsx │ ├── en-shared.ts │ ├── en.tsx │ ├── hu-shared.ts │ ├── hu.template.tsx │ ├── it-shared.ts │ ├── it.template.tsx │ ├── messagesInterface.ts │ ├── pl-shared.ts │ ├── pl.template.tsx │ ├── sharedMessagesInterface.ts │ ├── sk-shared.ts │ ├── sk.template.tsx │ └── xx.template.ts ├── transportTypeDefs.tsx ├── typeUtils.ts ├── types │ ├── auth.ts │ ├── common.ts │ ├── featureId.ts │ ├── nominatimResult.ts │ ├── osm.ts │ ├── overpass.ts │ └── trackingTypes.ts ├── urlMapUtils.ts ├── wms.ts └── workerPool.ts ├── ssl ├── Freemap_CA.crt ├── freemap.sk.key ├── freemap.sk.pem └── freemap.xdb ├── translation-manager ├── .gitignore ├── sync-language-files.ts └── tsconfig.json ├── tsconfig.json ├── typings └── global.d.ts └── webpack.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/LICENSE -------------------------------------------------------------------------------- /MarkdownDictPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/MarkdownDictPlugin.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /markdown-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/markdown-loader.js -------------------------------------------------------------------------------- /nginx-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/nginx-config -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/package.json -------------------------------------------------------------------------------- /patches/@restart+ui+1.9.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/patches/@restart+ui+1.9.4.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /samples/complex.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/samples/complex.gpx -------------------------------------------------------------------------------- /sitemap-generator/.gitignore: -------------------------------------------------------------------------------- 1 | *.js 2 | -------------------------------------------------------------------------------- /sitemap-generator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/sitemap-generator/index.ts -------------------------------------------------------------------------------- /sitemap-generator/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/sitemap-generator/objects.ts -------------------------------------------------------------------------------- /sitemap-generator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/sitemap-generator/tsconfig.json -------------------------------------------------------------------------------- /src/actions/authActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/authActions.ts -------------------------------------------------------------------------------- /src/actions/changesetsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/changesetsActions.ts -------------------------------------------------------------------------------- /src/actions/drawingLineActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/drawingLineActions.ts -------------------------------------------------------------------------------- /src/actions/drawingPointActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/drawingPointActions.ts -------------------------------------------------------------------------------- /src/actions/elevationChartActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/elevationChartActions.ts -------------------------------------------------------------------------------- /src/actions/galleryActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/galleryActions.ts -------------------------------------------------------------------------------- /src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/index.ts -------------------------------------------------------------------------------- /src/actions/l10nActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/l10nActions.ts -------------------------------------------------------------------------------- /src/actions/mainActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/mainActions.ts -------------------------------------------------------------------------------- /src/actions/mapActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/mapActions.ts -------------------------------------------------------------------------------- /src/actions/mapDetailsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/mapDetailsActions.ts -------------------------------------------------------------------------------- /src/actions/mapsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/mapsActions.ts -------------------------------------------------------------------------------- /src/actions/objectsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/objectsActions.ts -------------------------------------------------------------------------------- /src/actions/osmActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/osmActions.ts -------------------------------------------------------------------------------- /src/actions/routePlannerActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/routePlannerActions.ts -------------------------------------------------------------------------------- /src/actions/rpcActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/rpcActions.ts -------------------------------------------------------------------------------- /src/actions/searchActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/searchActions.ts -------------------------------------------------------------------------------- /src/actions/toastsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/toastsActions.ts -------------------------------------------------------------------------------- /src/actions/trackViewerActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/trackViewerActions.ts -------------------------------------------------------------------------------- /src/actions/trackingActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/trackingActions.ts -------------------------------------------------------------------------------- /src/actions/websocketActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/websocketActions.ts -------------------------------------------------------------------------------- /src/actions/wikiActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/actions/wikiActions.ts -------------------------------------------------------------------------------- /src/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/cache.ts -------------------------------------------------------------------------------- /src/cancelRegister.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/cancelRegister.ts -------------------------------------------------------------------------------- /src/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/categories.json -------------------------------------------------------------------------------- /src/clipboardUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/clipboardUtils.ts -------------------------------------------------------------------------------- /src/components/AboutModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/AboutModal.tsx -------------------------------------------------------------------------------- /src/components/AccountModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/AccountModal.tsx -------------------------------------------------------------------------------- /src/components/Ad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/Ad.tsx -------------------------------------------------------------------------------- /src/components/AreaInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/AreaInfo.tsx -------------------------------------------------------------------------------- /src/components/AsyncComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/AsyncComponent.tsx -------------------------------------------------------------------------------- /src/components/AsyncModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/AsyncModal.tsx -------------------------------------------------------------------------------- /src/components/Attribution.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/Attribution.tsx -------------------------------------------------------------------------------- /src/components/AuthProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/AuthProviders.tsx -------------------------------------------------------------------------------- /src/components/BuyCreditsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/BuyCreditsModal.tsx -------------------------------------------------------------------------------- /src/components/ChangesetDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ChangesetDetails.tsx -------------------------------------------------------------------------------- /src/components/ChangesetsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ChangesetsMenu.tsx -------------------------------------------------------------------------------- /src/components/ChangesetsResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ChangesetsResult.tsx -------------------------------------------------------------------------------- /src/components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/Checkbox.tsx -------------------------------------------------------------------------------- /src/components/CookieConsent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/CookieConsent.tsx -------------------------------------------------------------------------------- /src/components/CopyrightButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/CopyrightButton.tsx -------------------------------------------------------------------------------- /src/components/CredistAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/CredistAlert.tsx -------------------------------------------------------------------------------- /src/components/CreditsText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/CreditsText.tsx -------------------------------------------------------------------------------- /src/components/DateTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DateTime.tsx -------------------------------------------------------------------------------- /src/components/DeleteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DeleteButton.tsx -------------------------------------------------------------------------------- /src/components/DistanceInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DistanceInfo.tsx -------------------------------------------------------------------------------- /src/components/DocumentModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DocumentModal.tsx -------------------------------------------------------------------------------- /src/components/DownloadMapModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DownloadMapModal.tsx -------------------------------------------------------------------------------- /src/components/DrawingLinePointSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DrawingLinePointSelection.tsx -------------------------------------------------------------------------------- /src/components/DrawingLineResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DrawingLineResult.tsx -------------------------------------------------------------------------------- /src/components/DrawingLineSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DrawingLineSelection.tsx -------------------------------------------------------------------------------- /src/components/DrawingLinesResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DrawingLinesResult.tsx -------------------------------------------------------------------------------- /src/components/DrawingLinesTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DrawingLinesTool.tsx -------------------------------------------------------------------------------- /src/components/DrawingMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DrawingMenu.tsx -------------------------------------------------------------------------------- /src/components/DrawingPointSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DrawingPointSelection.tsx -------------------------------------------------------------------------------- /src/components/DrawingPointsResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DrawingPointsResult.tsx -------------------------------------------------------------------------------- /src/components/DrawingPointsTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DrawingPointsTool.tsx -------------------------------------------------------------------------------- /src/components/DrawingRecentColors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/DrawingRecentColors.tsx -------------------------------------------------------------------------------- /src/components/ElevationChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ElevationChart.tsx -------------------------------------------------------------------------------- /src/components/ElevationChartActivePoint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ElevationChartActivePoint.tsx -------------------------------------------------------------------------------- /src/components/ElevationInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ElevationInfo.tsx -------------------------------------------------------------------------------- /src/components/EmbedMapModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/EmbedMapModal.tsx -------------------------------------------------------------------------------- /src/components/Emoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/Emoji.tsx -------------------------------------------------------------------------------- /src/components/ErrorCatcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ErrorCatcher.tsx -------------------------------------------------------------------------------- /src/components/ExperimentalFunction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ExperimentalFunction.tsx -------------------------------------------------------------------------------- /src/components/ExportMapFeaturesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ExportMapFeaturesModal.tsx -------------------------------------------------------------------------------- /src/components/ExportMapModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ExportMapModal.tsx -------------------------------------------------------------------------------- /src/components/HomeLocationPickingMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/HomeLocationPickingMenu.tsx -------------------------------------------------------------------------------- /src/components/HomeLocationPickingResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/HomeLocationPickingResult.tsx -------------------------------------------------------------------------------- /src/components/Hotline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/Hotline.ts -------------------------------------------------------------------------------- /src/components/InfoBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/InfoBar.tsx -------------------------------------------------------------------------------- /src/components/Layers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/Layers.tsx -------------------------------------------------------------------------------- /src/components/LegacyMapsLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/LegacyMapsLegend.tsx -------------------------------------------------------------------------------- /src/components/LegendModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/LegendModal.tsx -------------------------------------------------------------------------------- /src/components/LocationResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/LocationResult.tsx -------------------------------------------------------------------------------- /src/components/LoginModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/LoginModal.tsx -------------------------------------------------------------------------------- /src/components/LongPressTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/LongPressTooltip.tsx -------------------------------------------------------------------------------- /src/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/Main.tsx -------------------------------------------------------------------------------- /src/components/MapContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/MapContextMenu.tsx -------------------------------------------------------------------------------- /src/components/MapControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/MapControls.tsx -------------------------------------------------------------------------------- /src/components/MapDetailsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/MapDetailsMenu.tsx -------------------------------------------------------------------------------- /src/components/MapDetailsTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/MapDetailsTool.tsx -------------------------------------------------------------------------------- /src/components/MapSwitchButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/MapSwitchButton.tsx -------------------------------------------------------------------------------- /src/components/MaplibreLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/MaplibreLayer.tsx -------------------------------------------------------------------------------- /src/components/MapsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/MapsMenu.tsx -------------------------------------------------------------------------------- /src/components/MapsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/MapsModal.tsx -------------------------------------------------------------------------------- /src/components/MaptilerAttribution.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/MaptilerAttribution.tsx -------------------------------------------------------------------------------- /src/components/ObjectDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ObjectDetails.tsx -------------------------------------------------------------------------------- /src/components/ObjectSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ObjectSelection.tsx -------------------------------------------------------------------------------- /src/components/ObjectsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ObjectsMenu.tsx -------------------------------------------------------------------------------- /src/components/ObjectsResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ObjectsResult.tsx -------------------------------------------------------------------------------- /src/components/OpenInExternalAppMenuButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/OpenInExternalAppMenuButton.tsx -------------------------------------------------------------------------------- /src/components/OpenInExternalAppMenuItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/OpenInExternalAppMenuItems.tsx -------------------------------------------------------------------------------- /src/components/OutdoorMapLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/OutdoorMapLegend.tsx -------------------------------------------------------------------------------- /src/components/PremiumActivationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/PremiumActivationModal.tsx -------------------------------------------------------------------------------- /src/components/ProjectPointModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ProjectPointModal.tsx -------------------------------------------------------------------------------- /src/components/Results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/Results.tsx -------------------------------------------------------------------------------- /src/components/RichMarker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/RichMarker.tsx -------------------------------------------------------------------------------- /src/components/RoutePlannerMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/RoutePlannerMenu.tsx -------------------------------------------------------------------------------- /src/components/RoutePlannerResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/RoutePlannerResult.tsx -------------------------------------------------------------------------------- /src/components/RoutePointSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/RoutePointSelection.tsx -------------------------------------------------------------------------------- /src/components/ScaledTileLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ScaledTileLayer.tsx -------------------------------------------------------------------------------- /src/components/SearchMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/SearchMenu.tsx -------------------------------------------------------------------------------- /src/components/SearchResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/SearchResults.tsx -------------------------------------------------------------------------------- /src/components/SearchSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/SearchSelection.tsx -------------------------------------------------------------------------------- /src/components/Selection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/Selection.tsx -------------------------------------------------------------------------------- /src/components/SelectionTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/SelectionTool.tsx -------------------------------------------------------------------------------- /src/components/ShortcutRecorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ShortcutRecorder.tsx -------------------------------------------------------------------------------- /src/components/SourceName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/SourceName.ts -------------------------------------------------------------------------------- /src/components/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/Toast.tsx -------------------------------------------------------------------------------- /src/components/Toasts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/Toasts.tsx -------------------------------------------------------------------------------- /src/components/ToolMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/ToolMenu.tsx -------------------------------------------------------------------------------- /src/components/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/Toolbar.tsx -------------------------------------------------------------------------------- /src/components/Tools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/Tools.tsx -------------------------------------------------------------------------------- /src/components/TrackViewerDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/TrackViewerDetails.tsx -------------------------------------------------------------------------------- /src/components/TrackViewerMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/TrackViewerMenu.tsx -------------------------------------------------------------------------------- /src/components/TrackViewerResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/TrackViewerResult.tsx -------------------------------------------------------------------------------- /src/components/TrackViewerUploadModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/TrackViewerUploadModal.tsx -------------------------------------------------------------------------------- /src/components/TrackingSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/TrackingSelection.tsx -------------------------------------------------------------------------------- /src/components/TranslationProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/TranslationProvider.tsx -------------------------------------------------------------------------------- /src/components/WikiLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/WikiLayer.tsx -------------------------------------------------------------------------------- /src/components/WmsMapLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/WmsMapLegend.tsx -------------------------------------------------------------------------------- /src/components/WmsTileLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/WmsTileLayer.ts -------------------------------------------------------------------------------- /src/components/gallery/Azimuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/Azimuth.tsx -------------------------------------------------------------------------------- /src/components/gallery/GalleryEditForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/GalleryEditForm.tsx -------------------------------------------------------------------------------- /src/components/gallery/GalleryFilterModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/GalleryFilterModal.tsx -------------------------------------------------------------------------------- /src/components/gallery/GalleryLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/GalleryLayer.tsx -------------------------------------------------------------------------------- /src/components/gallery/GalleryMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/GalleryMenu.tsx -------------------------------------------------------------------------------- /src/components/gallery/GalleryModals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/GalleryModals.tsx -------------------------------------------------------------------------------- /src/components/gallery/GalleryPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/GalleryPicker.tsx -------------------------------------------------------------------------------- /src/components/gallery/GalleryResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/GalleryResult.tsx -------------------------------------------------------------------------------- /src/components/gallery/GalleryUploadItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/GalleryUploadItem.tsx -------------------------------------------------------------------------------- /src/components/gallery/GalleryUploadModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/GalleryUploadModal.tsx -------------------------------------------------------------------------------- /src/components/gallery/GalleryViewerModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/GalleryViewerModal.tsx -------------------------------------------------------------------------------- /src/components/gallery/PictureLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/PictureLegend.tsx -------------------------------------------------------------------------------- /src/components/gallery/RecentTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/RecentTags.tsx -------------------------------------------------------------------------------- /src/components/gallery/galleryLayerWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/galleryLayerWorker.ts -------------------------------------------------------------------------------- /src/components/gallery/galleryTileRenderrer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/gallery/galleryTileRenderrer.ts -------------------------------------------------------------------------------- /src/components/mainMenu/HelpSubmenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/mainMenu/HelpSubmenu.tsx -------------------------------------------------------------------------------- /src/components/mainMenu/LanguageLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/mainMenu/LanguageLabel.tsx -------------------------------------------------------------------------------- /src/components/mainMenu/LanguageSubmenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/mainMenu/LanguageSubmenu.tsx -------------------------------------------------------------------------------- /src/components/mainMenu/MainMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/mainMenu/MainMenu.tsx -------------------------------------------------------------------------------- /src/components/mainMenu/MainMenuButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/mainMenu/MainMenuButton.tsx -------------------------------------------------------------------------------- /src/components/mainMenu/OfflineSubmenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/mainMenu/OfflineSubmenu.tsx -------------------------------------------------------------------------------- /src/components/mainMenu/SocialButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/mainMenu/SocialButtons.tsx -------------------------------------------------------------------------------- /src/components/mainMenu/SubmenuHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/mainMenu/SubmenuHeader.tsx -------------------------------------------------------------------------------- /src/components/mainMenu/TrackingSubmenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/mainMenu/TrackingSubmenu.tsx -------------------------------------------------------------------------------- /src/components/mainMenu/submenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/mainMenu/submenu.ts -------------------------------------------------------------------------------- /src/components/mapSettings/CustomMapForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/mapSettings/CustomMapForm.tsx -------------------------------------------------------------------------------- /src/components/mapSettings/MapSettingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/mapSettings/MapSettingsModal.tsx -------------------------------------------------------------------------------- /src/components/parameterizedShading/Shading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/parameterizedShading/Shading.tsx -------------------------------------------------------------------------------- /src/components/tracking/AccessToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/tracking/AccessToken.tsx -------------------------------------------------------------------------------- /src/components/tracking/AccessTokenForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/tracking/AccessTokenForm.tsx -------------------------------------------------------------------------------- /src/components/tracking/AccessTokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/tracking/AccessTokens.tsx -------------------------------------------------------------------------------- /src/components/tracking/Device.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/tracking/Device.tsx -------------------------------------------------------------------------------- /src/components/tracking/DeviceForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/tracking/DeviceForm.tsx -------------------------------------------------------------------------------- /src/components/tracking/Devices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/tracking/Devices.tsx -------------------------------------------------------------------------------- /src/components/tracking/TrackedDevice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/tracking/TrackedDevice.tsx -------------------------------------------------------------------------------- /src/components/tracking/TrackedDeviceForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/tracking/TrackedDeviceForm.tsx -------------------------------------------------------------------------------- /src/components/tracking/TrackedDevices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/tracking/TrackedDevices.tsx -------------------------------------------------------------------------------- /src/components/tracking/TrackingModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/tracking/TrackingModal.tsx -------------------------------------------------------------------------------- /src/components/tracking/TrackingPoint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/tracking/TrackingPoint.tsx -------------------------------------------------------------------------------- /src/components/tracking/TrackingResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/tracking/TrackingResult.tsx -------------------------------------------------------------------------------- /src/components/useAttributionInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/useAttributionInfo.ts -------------------------------------------------------------------------------- /src/components/useHtmlMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/useHtmlMeta.ts -------------------------------------------------------------------------------- /src/components/withContextTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/components/withContextTooltip.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/coordinatesParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/coordinatesParser.ts -------------------------------------------------------------------------------- /src/copyDisplayName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/copyDisplayName.ts -------------------------------------------------------------------------------- /src/dateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/dateUtils.ts -------------------------------------------------------------------------------- /src/deepPartial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/deepPartial.ts -------------------------------------------------------------------------------- /src/distanceFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/distanceFormatter.ts -------------------------------------------------------------------------------- /src/documents/attribution.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/attribution.en.md -------------------------------------------------------------------------------- /src/documents/attribution.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/attribution.sk.md -------------------------------------------------------------------------------- /src/documents/dvePercenta.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/dvePercenta.sk.md -------------------------------------------------------------------------------- /src/documents/exports.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/exports.en.md -------------------------------------------------------------------------------- /src/documents/exports.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/exports.it.md -------------------------------------------------------------------------------- /src/documents/exports.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/exports.sk.md -------------------------------------------------------------------------------- /src/documents/freemap.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/freemap.en.md -------------------------------------------------------------------------------- /src/documents/freemap.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/freemap.sk.md -------------------------------------------------------------------------------- /src/documents/garmin.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/garmin.en.md -------------------------------------------------------------------------------- /src/documents/garmin.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/garmin.sk.md -------------------------------------------------------------------------------- /src/documents/geocaching.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/geocaching.en.md -------------------------------------------------------------------------------- /src/documents/geocaching.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/geocaching.sk.md -------------------------------------------------------------------------------- /src/documents/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/index.tsx -------------------------------------------------------------------------------- /src/documents/osm.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/osm.en.md -------------------------------------------------------------------------------- /src/documents/osm.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/osm.sk.md -------------------------------------------------------------------------------- /src/documents/privacyPolicy.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/privacyPolicy.en.md -------------------------------------------------------------------------------- /src/documents/privacyPolicy.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/privacyPolicy.sk.md -------------------------------------------------------------------------------- /src/documents/shortcuts.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/shortcuts.en.md -------------------------------------------------------------------------------- /src/documents/shortcuts.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/documents/shortcuts.sk.md -------------------------------------------------------------------------------- /src/export/fetchPictures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/export/fetchPictures.ts -------------------------------------------------------------------------------- /src/export/garminExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/export/garminExport.ts -------------------------------------------------------------------------------- /src/export/garminExportProcessorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/export/garminExportProcessorHandler.ts -------------------------------------------------------------------------------- /src/export/geojsonExportProcessorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/export/geojsonExportProcessorHandler.ts -------------------------------------------------------------------------------- /src/export/gpxExportProcessorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/export/gpxExportProcessorHandler.ts -------------------------------------------------------------------------------- /src/export/gpxExporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/export/gpxExporter.ts -------------------------------------------------------------------------------- /src/export/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/export/upload.ts -------------------------------------------------------------------------------- /src/externalUrlUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/externalUrlUtils.ts -------------------------------------------------------------------------------- /src/fbLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/fbLoader.ts -------------------------------------------------------------------------------- /src/fixedPopperConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/fixedPopperConfig.ts -------------------------------------------------------------------------------- /src/galleryUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/galleryUtils.ts -------------------------------------------------------------------------------- /src/gapiLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/gapiLoader.ts -------------------------------------------------------------------------------- /src/garminLoginMessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/garminLoginMessageHandler.ts -------------------------------------------------------------------------------- /src/geoutils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/geoutils.ts -------------------------------------------------------------------------------- /src/globalErrorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/globalErrorHandler.ts -------------------------------------------------------------------------------- /src/hooks/useAd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useAd.ts -------------------------------------------------------------------------------- /src/hooks/useAppSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useAppSelector.ts -------------------------------------------------------------------------------- /src/hooks/useBecomePremium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useBecomePremium.ts -------------------------------------------------------------------------------- /src/hooks/useCheckboxInputState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useCheckboxInputState.ts -------------------------------------------------------------------------------- /src/hooks/useCopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useCopyButton.tsx -------------------------------------------------------------------------------- /src/hooks/useDateTimeFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useDateTimeFormat.ts -------------------------------------------------------------------------------- /src/hooks/useEffectiveChosenLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useEffectiveChosenLanguage.ts -------------------------------------------------------------------------------- /src/hooks/useGpxDropHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useGpxDropHandler.ts -------------------------------------------------------------------------------- /src/hooks/useLazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useLazy.ts -------------------------------------------------------------------------------- /src/hooks/useLeftMarginAdjuster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useLeftMarginAdjuster.ts -------------------------------------------------------------------------------- /src/hooks/useMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useMap.ts -------------------------------------------------------------------------------- /src/hooks/useMenuHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useMenuHandler.ts -------------------------------------------------------------------------------- /src/hooks/useModelChangeHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useModelChangeHandlers.ts -------------------------------------------------------------------------------- /src/hooks/useMouseCursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useMouseCursor.ts -------------------------------------------------------------------------------- /src/hooks/useNumberFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useNumberFormat.ts -------------------------------------------------------------------------------- /src/hooks/useOnline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useOnline.ts -------------------------------------------------------------------------------- /src/hooks/usePersistentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/usePersistentState.ts -------------------------------------------------------------------------------- /src/hooks/usePictureDropHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/usePictureDropHandler.ts -------------------------------------------------------------------------------- /src/hooks/useScrollClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useScrollClasses.ts -------------------------------------------------------------------------------- /src/hooks/useShareFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useShareFile.ts -------------------------------------------------------------------------------- /src/hooks/useShow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useShow.ts -------------------------------------------------------------------------------- /src/hooks/useStartFinishPoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useStartFinishPoints.ts -------------------------------------------------------------------------------- /src/hooks/useTextInputState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/hooks/useTextInputState.ts -------------------------------------------------------------------------------- /src/httpRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/httpRequest.ts -------------------------------------------------------------------------------- /src/imagePreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/imagePreview.ts -------------------------------------------------------------------------------- /src/images/1x1-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/1x1-black.png -------------------------------------------------------------------------------- /src/images/1x1-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/1x1-transparent.png -------------------------------------------------------------------------------- /src/images/1x1-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/1x1-white.png -------------------------------------------------------------------------------- /src/images/cursors/marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/cursors/marker.svg -------------------------------------------------------------------------------- /src/images/cursors/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/cursors/pencil.svg -------------------------------------------------------------------------------- /src/images/fm-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/fm-t-shirt.jpg -------------------------------------------------------------------------------- /src/images/freemap-logo-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/freemap-logo-print.png -------------------------------------------------------------------------------- /src/images/freemap-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/freemap-logo-small.png -------------------------------------------------------------------------------- /src/images/freemap-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/freemap-logo.png -------------------------------------------------------------------------------- /src/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/logo.jpg -------------------------------------------------------------------------------- /src/images/marker-icon-2x-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/marker-icon-2x-green.png -------------------------------------------------------------------------------- /src/images/marker-icon-2x-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/marker-icon-2x-red.png -------------------------------------------------------------------------------- /src/images/marker-icon-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/marker-icon-green.png -------------------------------------------------------------------------------- /src/images/marker-icon-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/marker-icon-red.png -------------------------------------------------------------------------------- /src/images/missing-tile-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/missing-tile-256x256.png -------------------------------------------------------------------------------- /src/images/poiIcons/aerodrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/aerodrome.svg -------------------------------------------------------------------------------- /src/images/poiIcons/alpine_hut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/alpine_hut.svg -------------------------------------------------------------------------------- /src/images/poiIcons/apartment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/apartment.svg -------------------------------------------------------------------------------- /src/images/poiIcons/arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/arch.svg -------------------------------------------------------------------------------- /src/images/poiIcons/archaeological_site.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/archaeological_site.svg -------------------------------------------------------------------------------- /src/images/poiIcons/arts_centre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/arts_centre.svg -------------------------------------------------------------------------------- /src/images/poiIcons/artwork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/artwork.svg -------------------------------------------------------------------------------- /src/images/poiIcons/atm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/atm.svg -------------------------------------------------------------------------------- /src/images/poiIcons/attraction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/attraction.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bank.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bar.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bare_rock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bare_rock.svg -------------------------------------------------------------------------------- /src/images/poiIcons/basic_hut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/basic_hut.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bbq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bbq.svg -------------------------------------------------------------------------------- /src/images/poiIcons/beach_resort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/beach_resort.svg -------------------------------------------------------------------------------- /src/images/poiIcons/beehive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/beehive.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bell_tower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bell_tower.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bench.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bicycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bicycle.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bicycle_parking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bicycle_parking.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bicycle_repair_station.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bicycle_repair_station.svg -------------------------------------------------------------------------------- /src/images/poiIcons/biergarten.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/biergarten.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bird_hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bird_hide.svg -------------------------------------------------------------------------------- /src/images/poiIcons/board.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/board.svg -------------------------------------------------------------------------------- /src/images/poiIcons/boat_rental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/boat_rental.svg -------------------------------------------------------------------------------- /src/images/poiIcons/boundary_stone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/boundary_stone.svg -------------------------------------------------------------------------------- /src/images/poiIcons/building.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/building.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bunker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bunker.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bureau_de_change.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bureau_de_change.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bus_station.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bus_station.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bus_stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bus_stop.svg -------------------------------------------------------------------------------- /src/images/poiIcons/bust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/bust.svg -------------------------------------------------------------------------------- /src/images/poiIcons/butcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/butcher.svg -------------------------------------------------------------------------------- /src/images/poiIcons/cafe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/cafe.svg -------------------------------------------------------------------------------- /src/images/poiIcons/camp_site.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/camp_site.svg -------------------------------------------------------------------------------- /src/images/poiIcons/car_repair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/car_repair.svg -------------------------------------------------------------------------------- /src/images/poiIcons/car_wash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/car_wash.svg -------------------------------------------------------------------------------- /src/images/poiIcons/casino.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/casino.svg -------------------------------------------------------------------------------- /src/images/poiIcons/castle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/castle.svg -------------------------------------------------------------------------------- /src/images/poiIcons/cattle_grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/cattle_grid.svg -------------------------------------------------------------------------------- /src/images/poiIcons/cave_entrance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/cave_entrance.svg -------------------------------------------------------------------------------- /src/images/poiIcons/chalet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/chalet.svg -------------------------------------------------------------------------------- /src/images/poiIcons/charging_station.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/charging_station.svg -------------------------------------------------------------------------------- /src/images/poiIcons/chimney.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/chimney.svg -------------------------------------------------------------------------------- /src/images/poiIcons/church.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/church.svg -------------------------------------------------------------------------------- /src/images/poiIcons/cinema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/cinema.svg -------------------------------------------------------------------------------- /src/images/poiIcons/city_gate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/city_gate.svg -------------------------------------------------------------------------------- /src/images/poiIcons/cliff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/cliff.svg -------------------------------------------------------------------------------- /src/images/poiIcons/climbing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/climbing.svg -------------------------------------------------------------------------------- /src/images/poiIcons/community_centre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/community_centre.svg -------------------------------------------------------------------------------- /src/images/poiIcons/confectionery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/confectionery.svg -------------------------------------------------------------------------------- /src/images/poiIcons/convenience.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/convenience.svg -------------------------------------------------------------------------------- /src/images/poiIcons/courthouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/courthouse.svg -------------------------------------------------------------------------------- /src/images/poiIcons/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/cross.svg -------------------------------------------------------------------------------- /src/images/poiIcons/cycle_barrier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/cycle_barrier.svg -------------------------------------------------------------------------------- /src/images/poiIcons/dentist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/dentist.svg -------------------------------------------------------------------------------- /src/images/poiIcons/doctors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/doctors.svg -------------------------------------------------------------------------------- /src/images/poiIcons/drinking_spring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/drinking_spring.svg -------------------------------------------------------------------------------- /src/images/poiIcons/drinking_water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/drinking_water.svg -------------------------------------------------------------------------------- /src/images/poiIcons/dyke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/dyke.svg -------------------------------------------------------------------------------- /src/images/poiIcons/earth_bank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/earth_bank.svg -------------------------------------------------------------------------------- /src/images/poiIcons/education/college.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/education/college.svg -------------------------------------------------------------------------------- /src/images/poiIcons/education/nursery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/education/nursery.svg -------------------------------------------------------------------------------- /src/images/poiIcons/education/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/education/school.svg -------------------------------------------------------------------------------- /src/images/poiIcons/education/university.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/education/university.svg -------------------------------------------------------------------------------- /src/images/poiIcons/elevator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/elevator.svg -------------------------------------------------------------------------------- /src/images/poiIcons/embankment-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/embankment-half.svg -------------------------------------------------------------------------------- /src/images/poiIcons/embankment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/embankment.svg -------------------------------------------------------------------------------- /src/images/poiIcons/emergency_phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/emergency_phone.svg -------------------------------------------------------------------------------- /src/images/poiIcons/excrement_bags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/excrement_bags.svg -------------------------------------------------------------------------------- /src/images/poiIcons/fast_food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/fast_food.svg -------------------------------------------------------------------------------- /src/images/poiIcons/fell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/fell.svg -------------------------------------------------------------------------------- /src/images/poiIcons/ferry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/ferry.svg -------------------------------------------------------------------------------- /src/images/poiIcons/fire_station.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/fire_station.svg -------------------------------------------------------------------------------- /src/images/poiIcons/firepit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/firepit.svg -------------------------------------------------------------------------------- /src/images/poiIcons/fishing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/fishing.svg -------------------------------------------------------------------------------- /src/images/poiIcons/fixme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/fixme.svg -------------------------------------------------------------------------------- /src/images/poiIcons/ford.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/ford.svg -------------------------------------------------------------------------------- /src/images/poiIcons/forester's_lodge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/forester's_lodge.svg -------------------------------------------------------------------------------- /src/images/poiIcons/fort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/fort.svg -------------------------------------------------------------------------------- /src/images/poiIcons/fortress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/fortress.svg -------------------------------------------------------------------------------- /src/images/poiIcons/fountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/fountain.svg -------------------------------------------------------------------------------- /src/images/poiIcons/free_flying.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/free_flying.svg -------------------------------------------------------------------------------- /src/images/poiIcons/fuel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/fuel.svg -------------------------------------------------------------------------------- /src/images/poiIcons/gate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/gate.svg -------------------------------------------------------------------------------- /src/images/poiIcons/golf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/golf.svg -------------------------------------------------------------------------------- /src/images/poiIcons/grapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/grapes.svg -------------------------------------------------------------------------------- /src/images/poiIcons/grave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/grave.svg -------------------------------------------------------------------------------- /src/images/poiIcons/guest_house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/guest_house.svg -------------------------------------------------------------------------------- /src/images/poiIcons/guidepost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/guidepost.svg -------------------------------------------------------------------------------- /src/images/poiIcons/guidepost_x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/guidepost_x.svg -------------------------------------------------------------------------------- /src/images/poiIcons/guidepost_xx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/guidepost_xx.svg -------------------------------------------------------------------------------- /src/images/poiIcons/gully.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/gully.svg -------------------------------------------------------------------------------- /src/images/poiIcons/highway-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/highway-arrow.svg -------------------------------------------------------------------------------- /src/images/poiIcons/horse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/horse.svg -------------------------------------------------------------------------------- /src/images/poiIcons/horse_riding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/horse_riding.svg -------------------------------------------------------------------------------- /src/images/poiIcons/hospital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/hospital.svg -------------------------------------------------------------------------------- /src/images/poiIcons/hostel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/hostel.svg -------------------------------------------------------------------------------- /src/images/poiIcons/hot_spring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/hot_spring.svg -------------------------------------------------------------------------------- /src/images/poiIcons/hotel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/hotel.svg -------------------------------------------------------------------------------- /src/images/poiIcons/hunting_stand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/hunting_stand.svg -------------------------------------------------------------------------------- /src/images/poiIcons/hut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/hut.svg -------------------------------------------------------------------------------- /src/images/poiIcons/ice_cream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/ice_cream.svg -------------------------------------------------------------------------------- /src/images/poiIcons/internet_cafe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/internet_cafe.svg -------------------------------------------------------------------------------- /src/images/poiIcons/kissing_gate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/kissing_gate.svg -------------------------------------------------------------------------------- /src/images/poiIcons/lean_to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/lean_to.svg -------------------------------------------------------------------------------- /src/images/poiIcons/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/library.svg -------------------------------------------------------------------------------- /src/images/poiIcons/lift_gate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/lift_gate.svg -------------------------------------------------------------------------------- /src/images/poiIcons/lighthouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/lighthouse.svg -------------------------------------------------------------------------------- /src/images/poiIcons/manger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/manger.svg -------------------------------------------------------------------------------- /src/images/poiIcons/manor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/manor.svg -------------------------------------------------------------------------------- /src/images/poiIcons/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/map.svg -------------------------------------------------------------------------------- /src/images/poiIcons/mast_other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/mast_other.svg -------------------------------------------------------------------------------- /src/images/poiIcons/memorial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/memorial.svg -------------------------------------------------------------------------------- /src/images/poiIcons/memorial_stone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/memorial_stone.svg -------------------------------------------------------------------------------- /src/images/poiIcons/military_area.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/military_area.svg -------------------------------------------------------------------------------- /src/images/poiIcons/mine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/mine.svg -------------------------------------------------------------------------------- /src/images/poiIcons/miniature_golf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/miniature_golf.svg -------------------------------------------------------------------------------- /src/images/poiIcons/monument.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/monument.svg -------------------------------------------------------------------------------- /src/images/poiIcons/motel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/motel.svg -------------------------------------------------------------------------------- /src/images/poiIcons/motorcycle_barrier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/motorcycle_barrier.svg -------------------------------------------------------------------------------- /src/images/poiIcons/motorcycle_parking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/motorcycle_parking.svg -------------------------------------------------------------------------------- /src/images/poiIcons/museum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/museum.svg -------------------------------------------------------------------------------- /src/images/poiIcons/national_park_area.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/national_park_area.svg -------------------------------------------------------------------------------- /src/images/poiIcons/nightclub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/nightclub.svg -------------------------------------------------------------------------------- /src/images/poiIcons/no_bicycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/no_bicycle.svg -------------------------------------------------------------------------------- /src/images/poiIcons/no_bicycle_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/no_bicycle_alt.svg -------------------------------------------------------------------------------- /src/images/poiIcons/no_bicycle_foot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/no_bicycle_foot.svg -------------------------------------------------------------------------------- /src/images/poiIcons/no_foot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/no_foot.svg -------------------------------------------------------------------------------- /src/images/poiIcons/not_drinking_spring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/not_drinking_spring.svg -------------------------------------------------------------------------------- /src/images/poiIcons/obelisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/obelisk.svg -------------------------------------------------------------------------------- /src/images/poiIcons/office.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/office.svg -------------------------------------------------------------------------------- /src/images/poiIcons/orchard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/orchard.svg -------------------------------------------------------------------------------- /src/images/poiIcons/outdoor_seating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/outdoor_seating.svg -------------------------------------------------------------------------------- /src/images/poiIcons/palace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/palace.svg -------------------------------------------------------------------------------- /src/images/poiIcons/parking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/parking.svg -------------------------------------------------------------------------------- /src/images/poiIcons/parking_tickets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/parking_tickets.svg -------------------------------------------------------------------------------- /src/images/poiIcons/peak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/peak.svg -------------------------------------------------------------------------------- /src/images/poiIcons/pharmacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/pharmacy.svg -------------------------------------------------------------------------------- /src/images/poiIcons/picnic_shelter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/picnic_shelter.svg -------------------------------------------------------------------------------- /src/images/poiIcons/picnic_site.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/picnic_site.svg -------------------------------------------------------------------------------- /src/images/poiIcons/picnic_table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/picnic_table.svg -------------------------------------------------------------------------------- /src/images/poiIcons/place_of_worship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/place_of_worship.svg -------------------------------------------------------------------------------- /src/images/poiIcons/plant_nursery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/plant_nursery.svg -------------------------------------------------------------------------------- /src/images/poiIcons/plaque.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/plaque.svg -------------------------------------------------------------------------------- /src/images/poiIcons/playground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/playground.svg -------------------------------------------------------------------------------- /src/images/poiIcons/police.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/police.svg -------------------------------------------------------------------------------- /src/images/poiIcons/post_box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/post_box.svg -------------------------------------------------------------------------------- /src/images/poiIcons/post_office.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/post_office.svg -------------------------------------------------------------------------------- /src/images/poiIcons/power_pole.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/power_pole.svg -------------------------------------------------------------------------------- /src/images/poiIcons/power_tower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/power_tower.svg -------------------------------------------------------------------------------- /src/images/poiIcons/prison.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/prison.svg -------------------------------------------------------------------------------- /src/images/poiIcons/protected_area.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/protected_area.svg -------------------------------------------------------------------------------- /src/images/poiIcons/pub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/pub.svg -------------------------------------------------------------------------------- /src/images/poiIcons/public_bath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/public_bath.svg -------------------------------------------------------------------------------- /src/images/poiIcons/public_bookcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/public_bookcase.svg -------------------------------------------------------------------------------- /src/images/poiIcons/public_transport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/public_transport.svg -------------------------------------------------------------------------------- /src/images/poiIcons/quarry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/quarry.svg -------------------------------------------------------------------------------- /src/images/poiIcons/recycling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/recycling.svg -------------------------------------------------------------------------------- /src/images/poiIcons/refitted_spring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/refitted_spring.svg -------------------------------------------------------------------------------- /src/images/poiIcons/rental_bicycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/rental_bicycle.svg -------------------------------------------------------------------------------- /src/images/poiIcons/rental_car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/rental_car.svg -------------------------------------------------------------------------------- /src/images/poiIcons/restaurant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/restaurant.svg -------------------------------------------------------------------------------- /src/images/poiIcons/rock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/rock.svg -------------------------------------------------------------------------------- /src/images/poiIcons/ruins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/ruins.svg -------------------------------------------------------------------------------- /src/images/poiIcons/saddle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/saddle.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sand.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sauna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sauna.svg -------------------------------------------------------------------------------- /src/images/poiIcons/scree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/scree.svg -------------------------------------------------------------------------------- /src/images/poiIcons/scrub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/scrub.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shelter-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shelter-alt.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shelter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shelter.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shooting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shooting.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/alcohol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/alcohol.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/art.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/bag.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/bakery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/bakery.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/beauty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/beauty.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/bed.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/beverages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/beverages.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/bicycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/bicycle.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/book.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/bookmaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/bookmaker.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/butcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/butcher.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/car.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/car_parts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/car_parts.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/car_repair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/car_repair.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/carpet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/carpet.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/charity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/charity.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/chemist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/chemist.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/clothes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/clothes.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/coffee.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/computer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/computer.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/confectionery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/confectionery.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/convenience.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/convenience.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/copyshop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/copyshop.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/dairy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/dairy.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/deli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/deli.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/department_store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/department_store.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/diy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/diy.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/electronics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/electronics.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/fabric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/fabric.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/florist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/florist.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/furniture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/furniture.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/garden_centre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/garden_centre.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/gift.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/greengrocer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/greengrocer.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/hairdresser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/hairdresser.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/hifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/hifi.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/houseware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/houseware.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/jewelry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/jewelry.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/laundry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/laundry.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/marketplace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/marketplace.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/massage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/massage.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/medical_supply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/medical_supply.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/mobile_phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/mobile_phone.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/music.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/musical_instrument.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/musical_instrument.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/newsagent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/newsagent.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/optician.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/optician.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/outdoor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/outdoor.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/paint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/paint.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/perfumery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/perfumery.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/pet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/pet.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/photo.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/seafood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/seafood.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/second_hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/second_hand.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/shoes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/shoes.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/sports.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/sports.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/stationery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/stationery.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/supermarket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/supermarket.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/tea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/tea.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/ticket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/ticket.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/tobacco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/tobacco.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/toys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/toys.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/trade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/trade.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/travel_agency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/travel_agency.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/tyres.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/tyres.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/variety_store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/variety_store.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/vending_machine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/vending_machine.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/video.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shop/video_games.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shop/video_games.svg -------------------------------------------------------------------------------- /src/images/poiIcons/shower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/shower.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sinkhole.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sinkhole.svg -------------------------------------------------------------------------------- /src/images/poiIcons/ski.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/ski.svg -------------------------------------------------------------------------------- /src/images/poiIcons/social_facility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/social_facility.svg -------------------------------------------------------------------------------- /src/images/poiIcons/solar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/solar.svg -------------------------------------------------------------------------------- /src/images/poiIcons/solar_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/solar_small.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/archery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/archery.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/baseball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/baseball.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/canoe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/canoe.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/cricket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/cricket.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/diving.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/diving.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/golf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/golf.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/gym.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/gym.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/gymnasium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/gymnasium.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/hillclimbing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/hillclimbing.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/horse_racing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/horse_racing.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/iceskating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/iceskating.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/jetski.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/jetski.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/leisure_centre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/leisure_centre.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/minature_golf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/minature_golf.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/motorracing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/motorracing.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/playground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/playground.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/sailing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/sailing.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/shooting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/shooting.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/skiing_downhill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/skiing_downhill.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/snooker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/snooker.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/soccer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/soccer.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/stadium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/stadium.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/swimming_indoor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/swimming_indoor.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/swimming_outdoor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/swimming_outdoor.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/tennis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/tennis.svg -------------------------------------------------------------------------------- /src/images/poiIcons/sport/windsurfing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/sport/windsurfing.svg -------------------------------------------------------------------------------- /src/images/poiIcons/spring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/spring.svg -------------------------------------------------------------------------------- /src/images/poiIcons/station.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/station.svg -------------------------------------------------------------------------------- /src/images/poiIcons/statue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/statue.svg -------------------------------------------------------------------------------- /src/images/poiIcons/steps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/steps.svg -------------------------------------------------------------------------------- /src/images/poiIcons/stile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/stile.svg -------------------------------------------------------------------------------- /src/images/poiIcons/stone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/stone.svg -------------------------------------------------------------------------------- /src/images/poiIcons/stump.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/stump.svg -------------------------------------------------------------------------------- /src/images/poiIcons/stump_single.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/stump_single.svg -------------------------------------------------------------------------------- /src/images/poiIcons/supermarket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/supermarket.svg -------------------------------------------------------------------------------- /src/images/poiIcons/taxi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/taxi.svg -------------------------------------------------------------------------------- /src/images/poiIcons/telephone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/telephone.svg -------------------------------------------------------------------------------- /src/images/poiIcons/temp_water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/temp_water.svg -------------------------------------------------------------------------------- /src/images/poiIcons/theatre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/theatre.svg -------------------------------------------------------------------------------- /src/images/poiIcons/toilets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/toilets.svg -------------------------------------------------------------------------------- /src/images/poiIcons/toll_booth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/toll_booth.svg -------------------------------------------------------------------------------- /src/images/poiIcons/tower_bell_tower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/tower_bell_tower.svg -------------------------------------------------------------------------------- /src/images/poiIcons/tower_communication.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/tower_communication.svg -------------------------------------------------------------------------------- /src/images/poiIcons/tower_observation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/tower_observation.svg -------------------------------------------------------------------------------- /src/images/poiIcons/tower_other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/tower_other.svg -------------------------------------------------------------------------------- /src/images/poiIcons/townhall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/townhall.svg -------------------------------------------------------------------------------- /src/images/poiIcons/traffic_signals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/traffic_signals.svg -------------------------------------------------------------------------------- /src/images/poiIcons/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/tree.svg -------------------------------------------------------------------------------- /src/images/poiIcons/tree2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/tree2.svg -------------------------------------------------------------------------------- /src/images/poiIcons/tree_protected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/tree_protected.svg -------------------------------------------------------------------------------- /src/images/poiIcons/university.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/university.svg -------------------------------------------------------------------------------- /src/images/poiIcons/vehicle_inspection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/vehicle_inspection.svg -------------------------------------------------------------------------------- /src/images/poiIcons/veterinary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/veterinary.svg -------------------------------------------------------------------------------- /src/images/poiIcons/viewpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/viewpoint.svg -------------------------------------------------------------------------------- /src/images/poiIcons/waste_basket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/waste_basket.svg -------------------------------------------------------------------------------- /src/images/poiIcons/waste_disposal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/waste_disposal.svg -------------------------------------------------------------------------------- /src/images/poiIcons/water_park.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/water_park.svg -------------------------------------------------------------------------------- /src/images/poiIcons/water_tower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/water_tower.svg -------------------------------------------------------------------------------- /src/images/poiIcons/water_well.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/water_well.svg -------------------------------------------------------------------------------- /src/images/poiIcons/water_works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/water_works.svg -------------------------------------------------------------------------------- /src/images/poiIcons/waterfall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/waterfall.svg -------------------------------------------------------------------------------- /src/images/poiIcons/watering_place.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/watering_place.svg -------------------------------------------------------------------------------- /src/images/poiIcons/waterway-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/waterway-arrow.svg -------------------------------------------------------------------------------- /src/images/poiIcons/wayside_shrine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/wayside_shrine.svg -------------------------------------------------------------------------------- /src/images/poiIcons/weather_shelter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/weather_shelter.svg -------------------------------------------------------------------------------- /src/images/poiIcons/wilderness_hut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/wilderness_hut.svg -------------------------------------------------------------------------------- /src/images/poiIcons/zoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/poiIcons/zoo.svg -------------------------------------------------------------------------------- /src/images/rovas_reklama.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/rovas_reklama.svg -------------------------------------------------------------------------------- /src/images/spinnerbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/images/spinnerbar.gif -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/keyboardHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/keyboardHandler.ts -------------------------------------------------------------------------------- /src/l10nInjector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/l10nInjector.tsx -------------------------------------------------------------------------------- /src/langUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/langUtils.ts -------------------------------------------------------------------------------- /src/leafletElementHolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/leafletElementHolder.ts -------------------------------------------------------------------------------- /src/legend/data/layers/poi/other/zoo/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/legend/data/layers/poi/other/zoo/list.png -------------------------------------------------------------------------------- /src/legend/data/layers/poi/sport/gym/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/legend/data/layers/poi/sport/gym/list.png -------------------------------------------------------------------------------- /src/legend/files/img/legend/highway_trunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/legend/files/img/legend/highway_trunk.jpg -------------------------------------------------------------------------------- /src/legend/files/img/legend/hwy-mwy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/legend/files/img/legend/hwy-mwy.png -------------------------------------------------------------------------------- /src/legend/files/img/legend/hwy-pri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/legend/files/img/legend/hwy-pri.png -------------------------------------------------------------------------------- /src/legend/files/img/legend/hwy-res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/legend/files/img/legend/hwy-res.png -------------------------------------------------------------------------------- /src/legend/files/img/legend/hwy-sec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/legend/files/img/legend/hwy-sec.png -------------------------------------------------------------------------------- /src/legend/files/img/legend/hwy-ser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/legend/files/img/legend/hwy-ser.png -------------------------------------------------------------------------------- /src/legend/files/img/legend/hwy-ter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/legend/files/img/legend/hwy-ter.png -------------------------------------------------------------------------------- /src/legend/files/img/legend/hwy-tr2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/legend/files/img/legend/hwy-tr2.png -------------------------------------------------------------------------------- /src/legend/files/img/legend/hwy-tr4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/legend/files/img/legend/hwy-tr4.png -------------------------------------------------------------------------------- /src/legend/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/legend/index.json -------------------------------------------------------------------------------- /src/locationChangeHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/locationChangeHandler.ts -------------------------------------------------------------------------------- /src/mapDefinitions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/mapDefinitions.tsx -------------------------------------------------------------------------------- /src/mapStateHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/mapStateHandler.ts -------------------------------------------------------------------------------- /src/mapUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/mapUtils.ts -------------------------------------------------------------------------------- /src/maplibre-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/maplibre-language.ts -------------------------------------------------------------------------------- /src/middlewares/errorHandlingMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/middlewares/errorHandlingMiddleware.ts -------------------------------------------------------------------------------- /src/middlewares/processorMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/middlewares/processorMiddleware.ts -------------------------------------------------------------------------------- /src/middlewares/statePersistingMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/middlewares/statePersistingMiddleware.ts -------------------------------------------------------------------------------- /src/middlewares/trackingMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/middlewares/trackingMiddleware.ts -------------------------------------------------------------------------------- /src/middlewares/webSocketMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/middlewares/webSocketMiddleware.ts -------------------------------------------------------------------------------- /src/navigationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/navigationUtils.ts -------------------------------------------------------------------------------- /src/numberValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/numberValidator.ts -------------------------------------------------------------------------------- /src/oldFreemapUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/oldFreemapUtils.ts -------------------------------------------------------------------------------- /src/osm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/.gitignore -------------------------------------------------------------------------------- /src/osm/osmNameResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/osmNameResolver.ts -------------------------------------------------------------------------------- /src/osm/osmTagToIconMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/osmTagToIconMapping.ts -------------------------------------------------------------------------------- /src/osm/osmTagToNameMapping-cs.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/osmTagToNameMapping-cs.template.ts -------------------------------------------------------------------------------- /src/osm/osmTagToNameMapping-de.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/osmTagToNameMapping-de.template.ts -------------------------------------------------------------------------------- /src/osm/osmTagToNameMapping-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/osmTagToNameMapping-en.ts -------------------------------------------------------------------------------- /src/osm/osmTagToNameMapping-hu.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/osmTagToNameMapping-hu.template.ts -------------------------------------------------------------------------------- /src/osm/osmTagToNameMapping-it.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/osmTagToNameMapping-it.template.ts -------------------------------------------------------------------------------- /src/osm/osmTagToNameMapping-pl.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/osmTagToNameMapping-pl.template.ts -------------------------------------------------------------------------------- /src/osm/osmTagToNameMapping-sk.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/osmTagToNameMapping-sk.template.ts -------------------------------------------------------------------------------- /src/osm/osmTagToNameMapping-xx.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/osmTagToNameMapping-xx.template.ts -------------------------------------------------------------------------------- /src/osm/osmTagToNameMappingType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/osmTagToNameMappingType.ts -------------------------------------------------------------------------------- /src/osm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/types.ts -------------------------------------------------------------------------------- /src/osm/useGenericNameResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osm/useGenericNameResolver.ts -------------------------------------------------------------------------------- /src/osmLoginMessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/osmLoginMessageHandler.ts -------------------------------------------------------------------------------- /src/pica-gpu/gl-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/pica-gpu/gl-helper.ts -------------------------------------------------------------------------------- /src/pica-gpu/index.ts: -------------------------------------------------------------------------------- 1 | export * from './resize.js'; 2 | -------------------------------------------------------------------------------- /src/pica-gpu/resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/pica-gpu/resize.ts -------------------------------------------------------------------------------- /src/pica-gpu/shaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/pica-gpu/shaders.ts -------------------------------------------------------------------------------- /src/premium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/premium.ts -------------------------------------------------------------------------------- /src/processors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors.ts -------------------------------------------------------------------------------- /src/processors/authDeleteAccountProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/authDeleteAccountProcessor.ts -------------------------------------------------------------------------------- /src/processors/authDisconnectProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/authDisconnectProcessor.ts -------------------------------------------------------------------------------- /src/processors/authInitProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/authInitProcessor.ts -------------------------------------------------------------------------------- /src/processors/authLogoutProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/authLogoutProcessor.ts -------------------------------------------------------------------------------- /src/processors/authWithFacebookProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/authWithFacebookProcessor.ts -------------------------------------------------------------------------------- /src/processors/authWithGarmin2Processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/authWithGarmin2Processor.ts -------------------------------------------------------------------------------- /src/processors/authWithGarminProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/authWithGarminProcessor.ts -------------------------------------------------------------------------------- /src/processors/authWithGoogleProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/authWithGoogleProcessor.ts -------------------------------------------------------------------------------- /src/processors/authWithOsm2Processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/authWithOsm2Processor.ts -------------------------------------------------------------------------------- /src/processors/authWithOsmProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/authWithOsmProcessor.ts -------------------------------------------------------------------------------- /src/processors/authWithOsmProcessorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/authWithOsmProcessorHandler.ts -------------------------------------------------------------------------------- /src/processors/cancelProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/cancelProcessor.ts -------------------------------------------------------------------------------- /src/processors/changesetsProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/changesetsProcessor.ts -------------------------------------------------------------------------------- /src/processors/convertToDrawingProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/convertToDrawingProcessor.ts -------------------------------------------------------------------------------- /src/processors/cookieConsentProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/cookieConsentProcessor.ts -------------------------------------------------------------------------------- /src/processors/deleteProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/deleteProcessor.ts -------------------------------------------------------------------------------- /src/processors/downloadMapProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/downloadMapProcessor.ts -------------------------------------------------------------------------------- /src/processors/downloadMapProcessorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/downloadMapProcessorHandler.ts -------------------------------------------------------------------------------- /src/processors/elevationChartProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/elevationChartProcessor.ts -------------------------------------------------------------------------------- /src/processors/errorProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/errorProcessor.ts -------------------------------------------------------------------------------- /src/processors/exportMapFeaturesProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/exportMapFeaturesProcessor.ts -------------------------------------------------------------------------------- /src/processors/fetchPurchasesProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/fetchPurchasesProcessor.ts -------------------------------------------------------------------------------- /src/processors/galleryFetchUsersProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/galleryFetchUsersProcessor.ts -------------------------------------------------------------------------------- /src/processors/galleryItemUploadProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/galleryItemUploadProcessor.ts -------------------------------------------------------------------------------- /src/processors/galleryQuickAddTagProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/galleryQuickAddTagProcessor.ts -------------------------------------------------------------------------------- /src/processors/gallerySavePictureProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/gallerySavePictureProcessor.ts -------------------------------------------------------------------------------- /src/processors/galleryShowImageGaProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/galleryShowImageGaProcessor.ts -------------------------------------------------------------------------------- /src/processors/gallerySubmitStarsProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/gallerySubmitStarsProcessor.ts -------------------------------------------------------------------------------- /src/processors/galleryUploadModalProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/galleryUploadModalProcessor.ts -------------------------------------------------------------------------------- /src/processors/getCountriesProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/getCountriesProcessor.ts -------------------------------------------------------------------------------- /src/processors/l10nSetLanguageProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/l10nSetLanguageProcessor.ts -------------------------------------------------------------------------------- /src/processors/legacyMapWarningProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/legacyMapWarningProcessor.ts -------------------------------------------------------------------------------- /src/processors/legendProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/legendProcessor.ts -------------------------------------------------------------------------------- /src/processors/locateProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/locateProcessor.ts -------------------------------------------------------------------------------- /src/processors/loginResponseHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/loginResponseHandler.ts -------------------------------------------------------------------------------- /src/processors/mapDetailsProcessorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/mapDetailsProcessorHandler.ts -------------------------------------------------------------------------------- /src/processors/mapExportProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/mapExportProcessor.ts -------------------------------------------------------------------------------- /src/processors/mapExportProcessorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/mapExportProcessorHandler.ts -------------------------------------------------------------------------------- /src/processors/mapRefocusProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/mapRefocusProcessor.ts -------------------------------------------------------------------------------- /src/processors/mapTypeGaProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/mapTypeGaProcessor.ts -------------------------------------------------------------------------------- /src/processors/mapsDeleteProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/mapsDeleteProcessor.ts -------------------------------------------------------------------------------- /src/processors/mapsLoadListProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/mapsLoadListProcessor.ts -------------------------------------------------------------------------------- /src/processors/mapsLoadProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/mapsLoadProcessor.ts -------------------------------------------------------------------------------- /src/processors/mapsSaveProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/mapsSaveProcessor.ts -------------------------------------------------------------------------------- /src/processors/measurementProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/measurementProcessor.ts -------------------------------------------------------------------------------- /src/processors/objectsFetchProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/objectsFetchProcessor.ts -------------------------------------------------------------------------------- /src/processors/openInExternalAppProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/openInExternalAppProcessor.ts -------------------------------------------------------------------------------- /src/processors/osmLoadNodeProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/osmLoadNodeProcessor.ts -------------------------------------------------------------------------------- /src/processors/osmLoadRelationProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/osmLoadRelationProcessor.ts -------------------------------------------------------------------------------- /src/processors/osmLoadWayProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/osmLoadWayProcessor.ts -------------------------------------------------------------------------------- /src/processors/purchaseProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/purchaseProcessor.ts -------------------------------------------------------------------------------- /src/processors/rpcProcessors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/rpcProcessors.ts -------------------------------------------------------------------------------- /src/processors/saveHomeLocationProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/saveHomeLocationProcessor.ts -------------------------------------------------------------------------------- /src/processors/saveSettingsProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/saveSettingsProcessor.ts -------------------------------------------------------------------------------- /src/processors/searchHighlightProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/searchHighlightProcessor.ts -------------------------------------------------------------------------------- /src/processors/searchProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/searchProcessor.ts -------------------------------------------------------------------------------- /src/processors/searchProcessorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/searchProcessorHandler.ts -------------------------------------------------------------------------------- /src/processors/setActiveModalProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/setActiveModalProcessor.ts -------------------------------------------------------------------------------- /src/processors/setToolProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/setToolProcessor.ts -------------------------------------------------------------------------------- /src/processors/toasts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/toasts.ts -------------------------------------------------------------------------------- /src/processors/toastsAddProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/toastsAddProcessor.ts -------------------------------------------------------------------------------- /src/processors/toastsCancelTypeProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/toastsCancelTypeProcessor.ts -------------------------------------------------------------------------------- /src/processors/toastsRemoveProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/toastsRemoveProcessor.ts -------------------------------------------------------------------------------- /src/processors/toastsStopTimeoutProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/toastsStopTimeoutProcessor.ts -------------------------------------------------------------------------------- /src/processors/trackViewerGpxLoadProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/trackViewerGpxLoadProcessor.ts -------------------------------------------------------------------------------- /src/processors/trackingDeviceProcessors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/trackingDeviceProcessors.ts -------------------------------------------------------------------------------- /src/processors/trackingFollowProcessors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/trackingFollowProcessors.ts -------------------------------------------------------------------------------- /src/processors/urlProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/urlProcessor.ts -------------------------------------------------------------------------------- /src/processors/wikiLayerProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/wikiLayerProcessor.ts -------------------------------------------------------------------------------- /src/processors/wikiLoadPreviewProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/processors/wikiLoadPreviewProcessor.ts -------------------------------------------------------------------------------- /src/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers.ts -------------------------------------------------------------------------------- /src/reducers/authReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/authReducer.ts -------------------------------------------------------------------------------- /src/reducers/changesetsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/changesetsReducer.ts -------------------------------------------------------------------------------- /src/reducers/drawingLinesReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/drawingLinesReducer.ts -------------------------------------------------------------------------------- /src/reducers/drawingPointsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/drawingPointsReducer.ts -------------------------------------------------------------------------------- /src/reducers/elevationChartReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/elevationChartReducer.ts -------------------------------------------------------------------------------- /src/reducers/galleryReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/galleryReducer.ts -------------------------------------------------------------------------------- /src/reducers/l10nReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/l10nReducer.ts -------------------------------------------------------------------------------- /src/reducers/mainReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/mainReducer.ts -------------------------------------------------------------------------------- /src/reducers/mapDetailsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/mapDetailsReducer.ts -------------------------------------------------------------------------------- /src/reducers/mapReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/mapReducer.ts -------------------------------------------------------------------------------- /src/reducers/mapsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/mapsReducer.ts -------------------------------------------------------------------------------- /src/reducers/objectsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/objectsReducer.ts -------------------------------------------------------------------------------- /src/reducers/routePlannerReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/routePlannerReducer.ts -------------------------------------------------------------------------------- /src/reducers/searchReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/searchReducer.ts -------------------------------------------------------------------------------- /src/reducers/toastsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/toastsReducer.ts -------------------------------------------------------------------------------- /src/reducers/trackViewerReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/trackViewerReducer.ts -------------------------------------------------------------------------------- /src/reducers/trackingReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/trackingReducer.ts -------------------------------------------------------------------------------- /src/reducers/websocketReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/websocketReducer.ts -------------------------------------------------------------------------------- /src/reducers/wikiReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/reducers/wikiReducer.ts -------------------------------------------------------------------------------- /src/selectors/mainSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/selectors/mainSelectors.ts -------------------------------------------------------------------------------- /src/static/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/.htaccess -------------------------------------------------------------------------------- /src/static/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-2465248996193624, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /src/static/authCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/authCallback.html -------------------------------------------------------------------------------- /src/static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/browserconfig.xml -------------------------------------------------------------------------------- /src/static/dropboxAuthCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/dropboxAuthCallback.html -------------------------------------------------------------------------------- /src/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/favicon.ico -------------------------------------------------------------------------------- /src/static/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /src/static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /src/static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /src/static/favicons/favicon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/favicons/favicon-48x48.png -------------------------------------------------------------------------------- /src/static/favicons/firefox_app_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/favicons/firefox_app_128x128.png -------------------------------------------------------------------------------- /src/static/favicons/firefox_app_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/favicons/firefox_app_512x512.png -------------------------------------------------------------------------------- /src/static/favicons/firefox_app_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/favicons/firefox_app_60x60.png -------------------------------------------------------------------------------- /src/static/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /src/static/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /src/static/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /src/static/favicons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/favicons/mstile-310x310.png -------------------------------------------------------------------------------- /src/static/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /src/static/freemap-logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/freemap-logo-128.png -------------------------------------------------------------------------------- /src/static/freemap-logo-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/freemap-logo-192.png -------------------------------------------------------------------------------- /src/static/freemap-logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/freemap-logo-256.png -------------------------------------------------------------------------------- /src/static/freemap-logo-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/freemap-logo-384.png -------------------------------------------------------------------------------- /src/static/freemap-logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/freemap-logo-512.png -------------------------------------------------------------------------------- /src/static/freemap-logo-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/freemap-logo-96.png -------------------------------------------------------------------------------- /src/static/freemap-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/freemap-logo.jpg -------------------------------------------------------------------------------- /src/static/freemap-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/freemap-logo.png -------------------------------------------------------------------------------- /src/static/garminAuthCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/garminAuthCallback.html -------------------------------------------------------------------------------- /src/static/google075ab6750584f8ae.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/google075ab6750584f8ae.html -------------------------------------------------------------------------------- /src/static/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/manifest.webmanifest -------------------------------------------------------------------------------- /src/static/nm6hmm18y4m4cx21u2z4u5b4eamsgs.html: -------------------------------------------------------------------------------- 1 | nm6hmm18y4m4cx21u2z4u5b4eamsgs 2 | -------------------------------------------------------------------------------- /src/static/offline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/offline.html -------------------------------------------------------------------------------- /src/static/pay_by_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/pay_by_square.png -------------------------------------------------------------------------------- /src/static/purchaseCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/purchaseCallback.html -------------------------------------------------------------------------------- /src/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/static/robots.txt -------------------------------------------------------------------------------- /src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/store.ts -------------------------------------------------------------------------------- /src/stringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/stringUtils.ts -------------------------------------------------------------------------------- /src/styles/bootstrap-override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/styles/bootstrap-override.scss -------------------------------------------------------------------------------- /src/styles/changesets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/styles/changesets.scss -------------------------------------------------------------------------------- /src/styles/elevationChart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/styles/elevationChart.scss -------------------------------------------------------------------------------- /src/styles/gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/styles/gallery.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/styles/leaflet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/styles/leaflet.scss -------------------------------------------------------------------------------- /src/styles/react-tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/styles/react-tags.scss -------------------------------------------------------------------------------- /src/styles/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/styles/search.scss -------------------------------------------------------------------------------- /src/styles/toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/styles/toasts.scss -------------------------------------------------------------------------------- /src/styles/trackViewer.scss: -------------------------------------------------------------------------------- 1 | .trackInfo { 2 | margin: 0; 3 | } 4 | -------------------------------------------------------------------------------- /src/subcategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/subcategories.ts -------------------------------------------------------------------------------- /src/sw/sw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/sw/sw.ts -------------------------------------------------------------------------------- /src/sw/upload-sw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/sw/upload-sw.ts -------------------------------------------------------------------------------- /src/toolDefinitions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/toolDefinitions.tsx -------------------------------------------------------------------------------- /src/translations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/.gitignore -------------------------------------------------------------------------------- /src/translations/cs-shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/cs-shared.ts -------------------------------------------------------------------------------- /src/translations/cs.template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/cs.template.tsx -------------------------------------------------------------------------------- /src/translations/de-shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/de-shared.ts -------------------------------------------------------------------------------- /src/translations/de.template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/de.template.tsx -------------------------------------------------------------------------------- /src/translations/en-shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/en-shared.ts -------------------------------------------------------------------------------- /src/translations/en.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/en.tsx -------------------------------------------------------------------------------- /src/translations/hu-shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/hu-shared.ts -------------------------------------------------------------------------------- /src/translations/hu.template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/hu.template.tsx -------------------------------------------------------------------------------- /src/translations/it-shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/it-shared.ts -------------------------------------------------------------------------------- /src/translations/it.template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/it.template.tsx -------------------------------------------------------------------------------- /src/translations/messagesInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/messagesInterface.ts -------------------------------------------------------------------------------- /src/translations/pl-shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/pl-shared.ts -------------------------------------------------------------------------------- /src/translations/pl.template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/pl.template.tsx -------------------------------------------------------------------------------- /src/translations/sharedMessagesInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/sharedMessagesInterface.ts -------------------------------------------------------------------------------- /src/translations/sk-shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/sk-shared.ts -------------------------------------------------------------------------------- /src/translations/sk.template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/sk.template.tsx -------------------------------------------------------------------------------- /src/translations/xx.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/translations/xx.template.ts -------------------------------------------------------------------------------- /src/transportTypeDefs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/transportTypeDefs.tsx -------------------------------------------------------------------------------- /src/typeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/typeUtils.ts -------------------------------------------------------------------------------- /src/types/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/types/auth.ts -------------------------------------------------------------------------------- /src/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/types/common.ts -------------------------------------------------------------------------------- /src/types/featureId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/types/featureId.ts -------------------------------------------------------------------------------- /src/types/nominatimResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/types/nominatimResult.ts -------------------------------------------------------------------------------- /src/types/osm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/types/osm.ts -------------------------------------------------------------------------------- /src/types/overpass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/types/overpass.ts -------------------------------------------------------------------------------- /src/types/trackingTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/types/trackingTypes.ts -------------------------------------------------------------------------------- /src/urlMapUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/urlMapUtils.ts -------------------------------------------------------------------------------- /src/wms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/wms.ts -------------------------------------------------------------------------------- /src/workerPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/src/workerPool.ts -------------------------------------------------------------------------------- /ssl/Freemap_CA.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/ssl/Freemap_CA.crt -------------------------------------------------------------------------------- /ssl/freemap.sk.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/ssl/freemap.sk.key -------------------------------------------------------------------------------- /ssl/freemap.sk.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/ssl/freemap.sk.pem -------------------------------------------------------------------------------- /ssl/freemap.xdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/ssl/freemap.xdb -------------------------------------------------------------------------------- /translation-manager/.gitignore: -------------------------------------------------------------------------------- 1 | *.js 2 | *.js.map 3 | -------------------------------------------------------------------------------- /translation-manager/sync-language-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/translation-manager/sync-language-files.ts -------------------------------------------------------------------------------- /translation-manager/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/translation-manager/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/typings/global.d.ts -------------------------------------------------------------------------------- /webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/HEAD/webpack.config.ts --------------------------------------------------------------------------------