├── .appveyor.yml ├── .github ├── FUNDING.yml └── workflows │ ├── android.yml │ ├── codeql.yml │ ├── linux.yml │ └── osx.yml ├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── cert ├── mac │ └── gpxsee.cer └── win │ └── gpxsee.cer ├── data ├── CRS │ ├── ellipsoids.csv │ ├── gcs.csv │ ├── pcs.csv │ └── projections.csv ├── maps │ ├── Antarctica.xml │ ├── OpenFreeMap.xml │ ├── OpenStreetMap.xml │ ├── OpenTopoMap.xml │ ├── USGS-imagery.xml │ ├── USGS-topo.xml │ └── mtbmap-cz.xml └── style │ └── style.xml ├── gpxsee.pro ├── gpxsee.qrc ├── icons ├── GUI │ ├── FlatColor │ │ ├── actions │ │ │ └── 22x22 │ │ │ │ ├── application-exit.svg │ │ │ │ ├── document-close.svg │ │ │ │ ├── document-export.svg │ │ │ │ ├── document-open-folder.svg │ │ │ │ ├── document-open-recent.svg │ │ │ │ ├── document-open.svg │ │ │ │ ├── document-print.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── go-first.svg │ │ │ │ ├── go-last.svg │ │ │ │ ├── go-next.svg │ │ │ │ ├── go-previous.svg │ │ │ │ ├── hint.svg │ │ │ │ ├── map-globe.svg │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ ├── show-hidden.svg │ │ │ │ ├── transform-move.svg │ │ │ │ ├── view-fullscreen.svg │ │ │ │ └── view-refresh.svg │ │ ├── index.theme │ │ ├── licence.txt │ │ └── preferences │ │ │ └── 48x48 │ │ │ ├── gpxsee_appearance.svg │ │ │ ├── gpxsee_data.svg │ │ │ ├── gpxsee_dem.svg │ │ │ ├── gpxsee_maps.svg │ │ │ ├── gpxsee_poi.svg │ │ │ ├── gpxsee_position.svg │ │ │ ├── gpxsee_print+export.svg │ │ │ └── gpxsee_system.svg │ └── Papirus │ │ ├── actions │ │ └── 22x22 │ │ │ ├── application-exit.svg │ │ │ ├── document-close.svg │ │ │ ├── document-export.svg │ │ │ ├── document-open-folder.svg │ │ │ ├── document-open-recent.svg │ │ │ ├── document-open.svg │ │ │ ├── document-print.svg │ │ │ ├── flag.svg │ │ │ ├── go-first.svg │ │ │ ├── go-last.svg │ │ │ ├── go-next.svg │ │ │ ├── go-previous.svg │ │ │ ├── hint.svg │ │ │ ├── map-globe.svg │ │ │ ├── office-chart-area-stacked.svg │ │ │ ├── show-hidden.svg │ │ │ ├── transform-move.svg │ │ │ ├── view-fullscreen.svg │ │ │ └── view-refresh.svg │ │ ├── index.theme │ │ ├── licence.txt │ │ └── preferences ├── app │ ├── gpxsee.dia │ ├── gpxsee.icns │ ├── gpxsee.ico │ └── hicolor │ │ ├── 128x128 │ │ └── apps │ │ │ └── gpxsee.png │ │ ├── 16x16 │ │ └── apps │ │ │ └── gpxsee.png │ │ ├── 32x32 │ │ └── apps │ │ │ └── gpxsee.png │ │ ├── 48x48 │ │ └── apps │ │ │ └── gpxsee.png │ │ ├── 64x64 │ │ └── apps │ │ │ └── gpxsee.png │ │ └── scalable │ │ └── apps │ │ └── gpxsee.svg ├── formats │ ├── 000.icns │ ├── 000.ico │ ├── 031.icns │ ├── 031.ico │ ├── aqm.icns │ ├── aqm.ico │ ├── cup.icns │ ├── cup.ico │ ├── fit.icns │ ├── fit.ico │ ├── gemf.icns │ ├── gemf.ico │ ├── ghp.icns │ ├── ghp.ico │ ├── gpi.icns │ ├── gpi.ico │ ├── gpx.icns │ ├── gpx.ico │ ├── igc.icns │ ├── igc.ico │ ├── img.icns │ ├── img.ico │ ├── itn.icns │ ├── itn.ico │ ├── jnx.icns │ ├── jnx.ico │ ├── json.icns │ ├── json.ico │ ├── kap.icns │ ├── kap.ico │ ├── kml.icns │ ├── kml.ico │ ├── loc.icns │ ├── loc.ico │ ├── map.icns │ ├── map.ico │ ├── mbts.icns │ ├── mbts.ico │ ├── nmea.icns │ ├── nmea.ico │ ├── omd.icns │ ├── omd.ico │ ├── ov2.icns │ ├── ov2.ico │ ├── plt.icns │ ├── plt.ico │ ├── qct.icns │ ├── qct.ico │ ├── rmap.icns │ ├── rmap.ico │ ├── rte.icns │ ├── rte.ico │ ├── scripts │ │ ├── extensions │ │ ├── icns.sh │ │ ├── ico.sh │ │ └── icon-template.svg │ ├── slf.icns │ ├── slf.ico │ ├── sml.icns │ ├── sml.ico │ ├── sqlt.icns │ ├── sqlt.ico │ ├── tba.icns │ ├── tba.ico │ ├── tcx.icns │ ├── tcx.ico │ ├── trk.icns │ ├── trk.ico │ ├── vkx.icns │ ├── vkx.ico │ ├── vtk.icns │ ├── vtk.ico │ ├── wld.icns │ ├── wld.ico │ ├── wpt.icns │ └── wpt.ico ├── map │ ├── POI │ │ ├── airfield-11.svg │ │ ├── airport-11.svg │ │ ├── alcohol-shop-11.svg │ │ ├── amusement-park-11.svg │ │ ├── bakery-11.svg │ │ ├── bank-11.svg │ │ ├── bar-11.svg │ │ ├── barrier-11.svg │ │ ├── baseball-11.svg │ │ ├── basketball-11.svg │ │ ├── bbq-11.svg │ │ ├── beach-11.svg │ │ ├── beer-11.svg │ │ ├── bicycle-11.svg │ │ ├── bowling-alley-11.svg │ │ ├── bridge-11.svg │ │ ├── building-alt1-11.svg │ │ ├── bus-11.svg │ │ ├── cafe-11.svg │ │ ├── campsite-11.svg │ │ ├── car-11.svg │ │ ├── car-rental-11.svg │ │ ├── car-repair-11.svg │ │ ├── casino-11.svg │ │ ├── castle-11.svg │ │ ├── cemetery-11.svg │ │ ├── charging-station-11.svg │ │ ├── cinema-11.svg │ │ ├── clothing-store-11.svg │ │ ├── college-11.svg │ │ ├── communications-tower-11.svg │ │ ├── convenience-11.svg │ │ ├── cricket-11.svg │ │ ├── cross-11.svg │ │ ├── dam-11.svg │ │ ├── danger-11.svg │ │ ├── defibrillator-11.svg │ │ ├── doctor-11.svg │ │ ├── drinking-water-11.svg │ │ ├── embassy-11.svg │ │ ├── entrance-alt1-11.svg │ │ ├── fast-food-11.svg │ │ ├── ferry-11.svg │ │ ├── fire-station-11.svg │ │ ├── fitness-centre-11.svg │ │ ├── fuel-11.svg │ │ ├── furniture-11.svg │ │ ├── garden-11.svg │ │ ├── garden-centre-11.svg │ │ ├── golf-11.svg │ │ ├── grocery-11.svg │ │ ├── hairdresser-11.svg │ │ ├── harbor-11.svg │ │ ├── hardware-11.svg │ │ ├── heliport-11.svg │ │ ├── home-11.svg │ │ ├── horse-riding-11.svg │ │ ├── hospital-11.svg │ │ ├── hot-spring.svg │ │ ├── ice-cream-11.svg │ │ ├── information-11.svg │ │ ├── landmark-11.svg │ │ ├── laundry-11.svg │ │ ├── library-11.svg │ │ ├── licence.txt │ │ ├── lighthouse-11.svg │ │ ├── lodging-11.svg │ │ ├── monument-11.svg │ │ ├── mountain-11.svg │ │ ├── museum-11.svg │ │ ├── observation-tower.svg │ │ ├── park-11.svg │ │ ├── parking-11.svg │ │ ├── parking-garage-11.svg │ │ ├── pharmacy-11.svg │ │ ├── picnic-site-11.svg │ │ ├── place-of-worship-11.svg │ │ ├── police-11.svg │ │ ├── post-11.svg │ │ ├── rail-11.svg │ │ ├── rail-light-11.svg │ │ ├── rail-metro-11.svg │ │ ├── religious-christian-11.svg │ │ ├── religious-jewish-11.svg │ │ ├── religious-muslim-11.svg │ │ ├── restaurant-11.svg │ │ ├── restaurant-noodle-11.svg │ │ ├── restaurant-pizza-11.svg │ │ ├── restaurant-seafood-11.svg │ │ ├── roadblock-11.svg │ │ ├── school-11.svg │ │ ├── shelter-11.svg │ │ ├── shop-11.svg │ │ ├── skateboard-11.svg │ │ ├── skiing-11.svg │ │ ├── slaughterhouse-11.svg │ │ ├── slipway-11.svg │ │ ├── soccer-11.svg │ │ ├── stadium-11.svg │ │ ├── swimming-11.svg │ │ ├── telephone-11.svg │ │ ├── tennis-11.svg │ │ ├── theatre-11.svg │ │ ├── toilet-11.svg │ │ ├── town-hall-11.svg │ │ ├── triangle-11.svg │ │ ├── triangle-stroked-11.svg │ │ ├── viewpoint-11.svg │ │ ├── village-11.svg │ │ ├── volcano-11.svg │ │ ├── volleyball-11.svg │ │ ├── water-11.svg │ │ ├── waterfall-11.svg │ │ ├── watermill-11.svg │ │ ├── wetland-11.svg │ │ ├── windmill-11.svg │ │ └── zoo-11.svg │ ├── marine │ │ ├── 24h-anchorage.png │ │ ├── anchor-line.png │ │ ├── anchorage.png │ │ ├── anchoring-prohibited.png │ │ ├── beacon-black-green.png │ │ ├── beacon-black-orange.png │ │ ├── beacon-black-red-black.png │ │ ├── beacon-black-red.png │ │ ├── beacon-black-white-black.png │ │ ├── beacon-black-white.png │ │ ├── beacon-black-yellow-black.png │ │ ├── beacon-black-yellow.png │ │ ├── beacon-green-black.png │ │ ├── beacon-green-red-green-red.png │ │ ├── beacon-green-red-green.png │ │ ├── beacon-green-red.png │ │ ├── beacon-green-white-green-white.png │ │ ├── beacon-green-white.png │ │ ├── beacon-green.png │ │ ├── beacon-grey.png │ │ ├── beacon-orange-black.png │ │ ├── beacon-orange-white.png │ │ ├── beacon-orange.png │ │ ├── beacon-red-black.png │ │ ├── beacon-red-green-red-green.png │ │ ├── beacon-red-green-red.png │ │ ├── beacon-red-green.png │ │ ├── beacon-red-white-red-white.png │ │ ├── beacon-red-white.png │ │ ├── beacon-red-yellow.png │ │ ├── beacon-red.png │ │ ├── beacon-white-black.png │ │ ├── beacon-white-green.png │ │ ├── beacon-white-orange-white.png │ │ ├── beacon-white-orange.png │ │ ├── beacon-white-red.png │ │ ├── beacon-white-yellow-white.png │ │ ├── beacon-white-yellow.png │ │ ├── beacon-white.png │ │ ├── beacon-yellow-black-yellow.png │ │ ├── beacon-yellow-black.png │ │ ├── beacon-yellow-red-yellow.png │ │ ├── beacon-yellow-white-yellow.png │ │ ├── beacon-yellow-white.png │ │ ├── beacon-yellow.png │ │ ├── beacon.png │ │ ├── boarding-place.png │ │ ├── breakers.png │ │ ├── building.png │ │ ├── buoy-black-green.png │ │ ├── buoy-black-orange.png │ │ ├── buoy-black-red-black.png │ │ ├── buoy-black-red.png │ │ ├── buoy-black-white-black.png │ │ ├── buoy-black-white.png │ │ ├── buoy-black-yellow-black.png │ │ ├── buoy-black-yellow.png │ │ ├── buoy-green-black.png │ │ ├── buoy-green-red-green-red.png │ │ ├── buoy-green-red-green.png │ │ ├── buoy-green-red.png │ │ ├── buoy-green-white-green-white.png │ │ ├── buoy-green-white.png │ │ ├── buoy-green.png │ │ ├── buoy-grey.png │ │ ├── buoy-orange-black.png │ │ ├── buoy-orange-white.png │ │ ├── buoy-orange.png │ │ ├── buoy-red-black.png │ │ ├── buoy-red-green-red-green.png │ │ ├── buoy-red-green-red.png │ │ ├── buoy-red-green.png │ │ ├── buoy-red-white-red-white.png │ │ ├── buoy-red-white.png │ │ ├── buoy-red-yellow.png │ │ ├── buoy-red.png │ │ ├── buoy-white-black.png │ │ ├── buoy-white-green.png │ │ ├── buoy-white-orange-white.png │ │ ├── buoy-white-orange.png │ │ ├── buoy-white-red.png │ │ ├── buoy-white-yellow-white.png │ │ ├── buoy-white-yellow.png │ │ ├── buoy-white.png │ │ ├── buoy-yellow-black-yellow.png │ │ ├── buoy-yellow-black.png │ │ ├── buoy-yellow-red-yellow.png │ │ ├── buoy-yellow-white-yellow.png │ │ ├── buoy-yellow-white.png │ │ ├── buoy-yellow.png │ │ ├── buoy.png │ │ ├── cable-area-line.png │ │ ├── cable-line.png │ │ ├── cable.png │ │ ├── chimney.png │ │ ├── church.png │ │ ├── coast-guard.png │ │ ├── construction.png │ │ ├── conveyor-line.png │ │ ├── crane.png │ │ ├── current.png │ │ ├── degaussing-line.png │ │ ├── deviation-dolphin.png │ │ ├── distance-mark-land.png │ │ ├── distance-mark.png │ │ ├── dome.png │ │ ├── dumping-ground-line.png │ │ ├── dw-anchorage.png │ │ ├── dw-route-line.png │ │ ├── eddies.png │ │ ├── entry-prohibited-line.png │ │ ├── fence-line.png │ │ ├── ferry-line.png │ │ ├── fishing-farm-line.png │ │ ├── fishing-farm.png │ │ ├── fishing-harbor.png │ │ ├── fishing-line.png │ │ ├── flagstaff.png │ │ ├── fleeting-area.png │ │ ├── fog-signal.png │ │ ├── foul.png │ │ ├── gauge.png │ │ ├── international-maritime-boundary.png │ │ ├── kelp.png │ │ ├── light-green.png │ │ ├── light-major.png │ │ ├── light-red.png │ │ ├── light-white.png │ │ ├── light-yellow.png │ │ ├── light.png │ │ ├── minefield-line.png │ │ ├── monument.png │ │ ├── mooring-buoy.png │ │ ├── nature-reserve-line.png │ │ ├── noanchor-line.png │ │ ├── nofishing-line.png │ │ ├── obstruction-covers.png │ │ ├── obstruction.png │ │ ├── overfalls.png │ │ ├── pile.png │ │ ├── pipeline-area-line.png │ │ ├── pipeline-overhead.png │ │ ├── pipeline.png │ │ ├── platform.png │ │ ├── pylon.png │ │ ├── radar-reflector.png │ │ ├── radar-transponder.png │ │ ├── radar.png │ │ ├── radio-call-2w.png │ │ ├── radio-call-garmin.png │ │ ├── radio-call.png │ │ ├── radio.png │ │ ├── rescue-station.png │ │ ├── rock-dangerous.png │ │ ├── rock-exposed.png │ │ ├── safety-zone-line.png │ │ ├── sanctuary-line.png │ │ ├── seaward-limit-of-contiguous-zone.png │ │ ├── seaward-limit-of-territorial-sea.png │ │ ├── shellfish-farm-line.png │ │ ├── shipyard.png │ │ ├── silo.png │ │ ├── spar-buoy-black-red-black.png │ │ ├── spar-buoy-black-red.png │ │ ├── spar-buoy-black-white.png │ │ ├── spar-buoy-black-yellow-black.png │ │ ├── spar-buoy-black-yellow.png │ │ ├── spar-buoy-green-red-green.png │ │ ├── spar-buoy-green-red.png │ │ ├── spar-buoy-green-white.png │ │ ├── spar-buoy-green.png │ │ ├── spar-buoy-red-green-red.png │ │ ├── spar-buoy-red-green.png │ │ ├── spar-buoy-red-white.png │ │ ├── spar-buoy-red-yellow.png │ │ ├── spar-buoy-red.png │ │ ├── spar-buoy-white-green.png │ │ ├── spar-buoy-white-red.png │ │ ├── spar-buoy-white-yellow.png │ │ ├── spar-buoy-white.png │ │ ├── spar-buoy-yellow-black-yellow.png │ │ ├── spar-buoy-yellow-black.png │ │ ├── spar-buoy-yellow-red-yellow.png │ │ ├── spar-buoy-yellow-white.png │ │ ├── spar-buoy-yellow.png │ │ ├── spar-buoy.png │ │ ├── straight-territorial-sea-baseline.png │ │ ├── tank.png │ │ ├── tanker-anchorage.png │ │ ├── tower.png │ │ ├── triangulation-point.png │ │ ├── turning-basin.png │ │ ├── windmill.png │ │ ├── windmotor.png │ │ ├── wreck-dangerous.png │ │ ├── wreck-exposed.png │ │ ├── wreck.png │ │ └── yacht-harbor.png │ ├── patterns │ │ ├── cemetery.svg │ │ ├── military-area.svg │ │ ├── nature-reserve.svg │ │ ├── orchard.svg │ │ ├── vineyard.svg │ │ └── wetland.svg │ └── symbols │ │ ├── bunker.svg │ │ ├── cliff.svg │ │ ├── cross.svg │ │ ├── exit.svg │ │ ├── flow.svg │ │ ├── oneway.svg │ │ └── saddle.svg └── symbols │ ├── ATV.png │ ├── Airport.png │ ├── Alert.png │ ├── Amusement Park.png │ ├── Anchor.png │ ├── Ballpark.png │ ├── Bank.png │ ├── Bar.png │ ├── Beach.png │ ├── Big Game.png │ ├── Bike Trail.png │ ├── Boat Ramp.png │ ├── Bowling.png │ ├── Bridge.png │ ├── Building.png │ ├── Campground.png │ ├── Car Rental.png │ ├── Car Repair.png │ ├── Car.png │ ├── Cemetary.png │ ├── Checkpoint.png │ ├── Church.png │ ├── Crossing.png │ ├── Dam.png │ ├── Danger.png │ ├── Drinking Water.png │ ├── Fastfood.png │ ├── Ferry.png │ ├── First Aid.png │ ├── First Category.png │ ├── Fishing Area.png │ ├── Flag, Blue.png │ ├── Flag, Green.png │ ├── Flag, Red.png │ ├── Flag.png │ ├── Food.png │ ├── Forest.png │ ├── Fourth Category.png │ ├── Funicular.png │ ├── Furbearer.png │ ├── Gas Station.png │ ├── Gear.png │ ├── Geocache Found.png │ ├── Geocache.png │ ├── Ghost Town.png │ ├── Golf Course.png │ ├── Ground Transportation.png │ ├── Heliport.png │ ├── Hors Category.png │ ├── Hunting Area.png │ ├── Iceskating.png │ ├── Info.png │ ├── Information.png │ ├── Left.png │ ├── Library.png │ ├── Live Theater.png │ ├── Lodge.png │ ├── Lodging.png │ ├── Marina.png │ ├── Medical Facility.png │ ├── Meeting Spot.png │ ├── Military.png │ ├── Mine.png │ ├── Movie Theater.png │ ├── Museum.png │ ├── Obstacle.png │ ├── Oil Field.png │ ├── Overlook.png │ ├── Parachute Area.png │ ├── Park.png │ ├── Parking Area.png │ ├── Pharmacy.png │ ├── Picnic Area.png │ ├── Pizza.png │ ├── Police Station.png │ ├── Post Office.png │ ├── RV Park.png │ ├── Radio Beacon.png │ ├── Railway.png │ ├── Residence.png │ ├── Rest Area.png │ ├── Restaurant.png │ ├── Restroom.png │ ├── Right.png │ ├── Scenic Area.png │ ├── School.png │ ├── Second Category.png │ ├── Segment End.png │ ├── Segment Start.png │ ├── Service.png │ ├── Sharp Curve.png │ ├── Sharp Left.png │ ├── Sharp Right.png │ ├── Shelter.png │ ├── Shipwreck.png │ ├── Shopping Center.png │ ├── Shower.png │ ├── Ski Resort.png │ ├── Skiing Area.png │ ├── Skull and Crossbones.png │ ├── Slight Left.png │ ├── Slight Right.png │ ├── Small Game.png │ ├── Sprint.png │ ├── Stadium.png │ ├── Steep Incline.png │ ├── Store.png │ ├── Straight.png │ ├── Summit.png │ ├── Tall Tower.png │ ├── Telephone.png │ ├── Third Category.png │ ├── Toilet.png │ ├── Trail Head.png │ ├── Transport.png │ ├── Truck Stop.png │ ├── Truck.png │ ├── Tunnel.png │ ├── U-Turn.png │ ├── Ultralight Area.png │ ├── Upland Game.png │ ├── Valley.png │ ├── Water Hydrant.png │ ├── Water Source.png │ ├── Water.png │ ├── Waterfowl.png │ ├── Waypoint.png │ ├── Winery.png │ ├── Zoo.png │ └── licence.txt ├── lang ├── gpxsee_ca.ts ├── gpxsee_cs.ts ├── gpxsee_da.ts ├── gpxsee_de.ts ├── gpxsee_en.ts ├── gpxsee_eo.ts ├── gpxsee_es.ts ├── gpxsee_fi.ts ├── gpxsee_fr.ts ├── gpxsee_hu.ts ├── gpxsee_it.ts ├── gpxsee_ko.ts ├── gpxsee_nb.ts ├── gpxsee_pl.ts ├── gpxsee_pt_BR.ts ├── gpxsee_ru.ts ├── gpxsee_sv.ts ├── gpxsee_tr.ts ├── gpxsee_uk.ts └── gpxsee_zh_CN.ts ├── licence.txt ├── pkg ├── android │ ├── AndroidManifest.xml │ ├── build.gradle │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable-xxxhdpi │ │ │ └── icon.png │ │ └── values │ │ │ └── libs.xml │ └── src │ │ └── org │ │ └── gpxsee │ │ └── gpxsee │ │ └── Activity.java ├── linux │ ├── gpxsee.appdata.xml │ ├── gpxsee.desktop │ └── gpxsee.xml ├── mac │ └── Info.plist └── windows │ └── gpxsee64.nsi ├── src ├── GUI │ ├── app.cpp │ ├── app.h │ ├── areaitem.cpp │ ├── areaitem.h │ ├── authenticationwidget.cpp │ ├── authenticationwidget.h │ ├── axisitem.cpp │ ├── axisitem.h │ ├── axislabelitem.cpp │ ├── axislabelitem.h │ ├── cadencegraph.cpp │ ├── cadencegraph.h │ ├── cadencegraphitem.cpp │ ├── cadencegraphitem.h │ ├── colorbox.cpp │ ├── colorbox.h │ ├── coordinatesitem.cpp │ ├── coordinatesitem.h │ ├── crosshairitem.cpp │ ├── crosshairitem.h │ ├── dirselectwidget.cpp │ ├── dirselectwidget.h │ ├── elevationgraph.cpp │ ├── elevationgraph.h │ ├── elevationgraphitem.cpp │ ├── elevationgraphitem.h │ ├── filebrowser.cpp │ ├── filebrowser.h │ ├── fileselectwidget.cpp │ ├── fileselectwidget.h │ ├── flowlayout.cpp │ ├── flowlayout.h │ ├── font.h │ ├── format.cpp │ ├── format.h │ ├── gearratiograph.cpp │ ├── gearratiograph.h │ ├── gearratiographitem.cpp │ ├── gearratiographitem.h │ ├── graphicsscene.cpp │ ├── graphicsscene.h │ ├── graphitem.cpp │ ├── graphitem.h │ ├── graphtab.h │ ├── graphview.cpp │ ├── graphview.h │ ├── griditem.cpp │ ├── griditem.h │ ├── gui.cpp │ ├── gui.h │ ├── heartrategraph.cpp │ ├── heartrategraph.h │ ├── heartrategraphitem.cpp │ ├── heartrategraphitem.h │ ├── icons.h │ ├── infoitem.cpp │ ├── infoitem.h │ ├── infolabel.cpp │ ├── infolabel.h │ ├── keys.h │ ├── legendentryitem.cpp │ ├── legendentryitem.h │ ├── legenditem.cpp │ ├── legenditem.h │ ├── mapaction.h │ ├── mapitem.cpp │ ├── mapitem.h │ ├── mapview.cpp │ ├── mapview.h │ ├── marginswidget.cpp │ ├── marginswidget.h │ ├── markerinfoitem.cpp │ ├── markerinfoitem.h │ ├── markeritem.cpp │ ├── markeritem.h │ ├── motioninfoitem.cpp │ ├── motioninfoitem.h │ ├── navigationwidget.cpp │ ├── navigationwidget.h │ ├── oddspinbox.cpp │ ├── oddspinbox.h │ ├── optionsdialog.cpp │ ├── optionsdialog.h │ ├── palette.cpp │ ├── palette.h │ ├── passwordedit.cpp │ ├── passwordedit.h │ ├── pathitem.cpp │ ├── pathitem.h │ ├── pathtickitem.cpp │ ├── pathtickitem.h │ ├── pdfexportdialog.cpp │ ├── pdfexportdialog.h │ ├── percentslider.cpp │ ├── percentslider.h │ ├── planeitem.h │ ├── pluginparameters.cpp │ ├── pluginparameters.h │ ├── pngexportdialog.cpp │ ├── pngexportdialog.h │ ├── poiaction.h │ ├── popup.cpp │ ├── popup.h │ ├── powergraph.cpp │ ├── powergraph.h │ ├── powergraphitem.cpp │ ├── powergraphitem.h │ ├── projectioncombobox.cpp │ ├── projectioncombobox.h │ ├── routeitem.cpp │ ├── routeitem.h │ ├── scaleitem.cpp │ ├── scaleitem.h │ ├── searchpointer.h │ ├── settings.cpp │ ├── settings.h │ ├── sliderinfoitem.cpp │ ├── sliderinfoitem.h │ ├── slideritem.cpp │ ├── slideritem.h │ ├── speedgraph.cpp │ ├── speedgraph.h │ ├── speedgraphitem.cpp │ ├── speedgraphitem.h │ ├── stylecombobox.cpp │ ├── stylecombobox.h │ ├── temperaturegraph.cpp │ ├── temperaturegraph.h │ ├── temperaturegraphitem.cpp │ ├── temperaturegraphitem.h │ ├── thumbnail.cpp │ ├── thumbnail.h │ ├── timetype.h │ ├── timezoneinfo.h │ ├── tooltip.h │ ├── trackinfo.cpp │ ├── trackinfo.h │ ├── trackitem.cpp │ ├── trackitem.h │ ├── units.h │ ├── waypointitem.cpp │ └── waypointitem.h ├── common │ ├── color.h │ ├── config.h │ ├── coordinates.cpp │ ├── coordinates.h │ ├── csv.cpp │ ├── csv.h │ ├── garmin.h │ ├── greatcircle.cpp │ ├── greatcircle.h │ ├── hash.h │ ├── kv.h │ ├── polygon.h │ ├── programpaths.cpp │ ├── programpaths.h │ ├── range.cpp │ ├── range.h │ ├── rectc.cpp │ ├── rectc.h │ ├── rtree.h │ ├── textcodec.cpp │ ├── textcodec.h │ ├── tifffile.cpp │ ├── tifffile.h │ ├── treenode.h │ ├── util.cpp │ ├── util.h │ └── wgs84.h ├── data │ ├── address.cpp │ ├── address.h │ ├── area.h │ ├── csvparser.cpp │ ├── csvparser.h │ ├── cupparser.cpp │ ├── cupparser.h │ ├── data.cpp │ ├── data.h │ ├── exifparser.cpp │ ├── exifparser.h │ ├── fitparser.cpp │ ├── fitparser.h │ ├── geojsonparser.cpp │ ├── geojsonparser.h │ ├── gpiparser.cpp │ ├── gpiparser.h │ ├── gpsdumpparser.cpp │ ├── gpsdumpparser.h │ ├── gpxparser.cpp │ ├── gpxparser.h │ ├── graph.h │ ├── igcparser.cpp │ ├── igcparser.h │ ├── itnparser.cpp │ ├── itnparser.h │ ├── kmlparser.cpp │ ├── kmlparser.h │ ├── link.h │ ├── locparser.cpp │ ├── locparser.h │ ├── nmeaparser.cpp │ ├── nmeaparser.h │ ├── onmoveparsers.cpp │ ├── onmoveparsers.h │ ├── ov2parser.cpp │ ├── ov2parser.h │ ├── oziparsers.cpp │ ├── oziparsers.h │ ├── parser.h │ ├── path.cpp │ ├── path.h │ ├── poi.cpp │ ├── poi.h │ ├── route.cpp │ ├── route.h │ ├── routedata.h │ ├── slfparser.cpp │ ├── slfparser.h │ ├── smlparser.cpp │ ├── smlparser.h │ ├── style.h │ ├── tcxparser.cpp │ ├── tcxparser.h │ ├── track.cpp │ ├── track.h │ ├── trackdata.h │ ├── trackpoint.h │ ├── twonavparser.cpp │ ├── twonavparser.h │ ├── txtparser.cpp │ ├── txtparser.h │ ├── vkxparser.cpp │ ├── vkxparser.h │ ├── vtkparser.cpp │ ├── vtkparser.h │ ├── waypoint.cpp │ └── waypoint.h ├── main.cpp └── map │ ├── ENC │ ├── atlasdata.cpp │ ├── atlasdata.h │ ├── attributes.h │ ├── data.h │ ├── iso8211.cpp │ ├── iso8211.h │ ├── mapdata.cpp │ ├── mapdata.h │ ├── objects.h │ ├── rastertile.cpp │ ├── rastertile.h │ ├── style.cpp │ └── style.h │ ├── IMG │ ├── bitstream.cpp │ ├── bitstream.h │ ├── deltastream.cpp │ ├── deltastream.h │ ├── demfile.cpp │ ├── demfile.h │ ├── demtile.h │ ├── demtree.cpp │ ├── demtree.h │ ├── gmapdata.cpp │ ├── gmapdata.h │ ├── huffmanbuffer.cpp │ ├── huffmanbuffer.h │ ├── huffmanstream.cpp │ ├── huffmanstream.h │ ├── huffmantable.cpp │ ├── huffmantable.h │ ├── huffmantext.cpp │ ├── huffmantext.h │ ├── imgdata.cpp │ ├── imgdata.h │ ├── jls.cpp │ ├── jls.h │ ├── label.h │ ├── lblfile.cpp │ ├── lblfile.h │ ├── light.h │ ├── mapdata.cpp │ ├── mapdata.h │ ├── netfile.cpp │ ├── netfile.h │ ├── nodfile.cpp │ ├── nodfile.h │ ├── raster.h │ ├── rastertile.cpp │ ├── rastertile.h │ ├── rgnfile.cpp │ ├── rgnfile.h │ ├── section.h │ ├── shield.h │ ├── style.cpp │ ├── style.h │ ├── subdiv.h │ ├── subfile.cpp │ ├── subfile.h │ ├── trefile.cpp │ ├── trefile.h │ ├── vectortile.cpp │ ├── vectortile.h │ └── zoom.h │ ├── angularunits.cpp │ ├── angularunits.h │ ├── aqmmap.cpp │ ├── aqmmap.h │ ├── atlas.cpp │ ├── atlas.h │ ├── bitmapline.cpp │ ├── bitmapline.h │ ├── bsbmap.cpp │ ├── bsbmap.h │ ├── calibrationpoint.h │ ├── conversion.cpp │ ├── conversion.h │ ├── coordinatesystem.cpp │ ├── coordinatesystem.h │ ├── crs.cpp │ ├── crs.h │ ├── ct.h │ ├── datum.cpp │ ├── datum.h │ ├── dem.cpp │ ├── dem.h │ ├── demloader.cpp │ ├── demloader.h │ ├── downloader.cpp │ ├── downloader.h │ ├── ellipsoid.cpp │ ├── ellipsoid.h │ ├── emptymap.cpp │ ├── emptymap.h │ ├── encatlas.cpp │ ├── encatlas.h │ ├── encjob.h │ ├── encmap.cpp │ ├── encmap.h │ ├── filter.cpp │ ├── filter.h │ ├── gcs.cpp │ ├── gcs.h │ ├── gemfmap.cpp │ ├── gemfmap.h │ ├── geocentric.cpp │ ├── geocentric.h │ ├── geotiff.cpp │ ├── geotiff.h │ ├── geotiffmap.cpp │ ├── geotiffmap.h │ ├── gmifile.cpp │ ├── gmifile.h │ ├── hillshading.cpp │ ├── hillshading.h │ ├── image.cpp │ ├── image.h │ ├── imgmap.cpp │ ├── imgmap.h │ ├── invalidmap.h │ ├── jnxmap.cpp │ ├── jnxmap.h │ ├── kmzmap.cpp │ ├── kmzmap.h │ ├── linearunits.cpp │ ├── linearunits.h │ ├── map.cpp │ ├── map.h │ ├── mapfile.cpp │ ├── mapfile.h │ ├── maplist.cpp │ ├── maplist.h │ ├── mapsforge │ ├── mapdata.cpp │ ├── mapdata.h │ ├── rastertile.cpp │ ├── rastertile.h │ ├── style.cpp │ ├── style.h │ ├── subfile.cpp │ └── subfile.h │ ├── mapsforgemap.cpp │ ├── mapsforgemap.h │ ├── mapsource.cpp │ ├── mapsource.h │ ├── matrix.cpp │ ├── matrix.h │ ├── mbtilesmap.cpp │ ├── mbtilesmap.h │ ├── metatype.h │ ├── onlinemap.cpp │ ├── onlinemap.h │ ├── oruxmap.cpp │ ├── oruxmap.h │ ├── osm.cpp │ ├── osm.h │ ├── osmdroidmap.cpp │ ├── osmdroidmap.h │ ├── ozf.cpp │ ├── ozf.h │ ├── ozimap.cpp │ ├── ozimap.h │ ├── pcs.cpp │ ├── pcs.h │ ├── pointd.h │ ├── primemeridian.cpp │ ├── primemeridian.h │ ├── prjfile.cpp │ ├── prjfile.h │ ├── proj │ ├── albersequal.cpp │ ├── albersequal.h │ ├── krovak.cpp │ ├── krovak.h │ ├── lambertazimuthal.cpp │ ├── lambertazimuthal.h │ ├── lambertconic.cpp │ ├── lambertconic.h │ ├── latlon.h │ ├── mercator.cpp │ ├── mercator.h │ ├── obliquestereographic.cpp │ ├── obliquestereographic.h │ ├── polarstereographic.cpp │ ├── polarstereographic.h │ ├── polyconic.cpp │ ├── polyconic.h │ ├── transversemercator.cpp │ ├── transversemercator.h │ ├── webmercator.cpp │ └── webmercator.h │ ├── projection.cpp │ ├── projection.h │ ├── qctmap.cpp │ ├── qctmap.h │ ├── rectd.cpp │ ├── rectd.h │ ├── rmap.cpp │ ├── rmap.h │ ├── sqlitemap.cpp │ ├── sqlitemap.h │ ├── tar.cpp │ ├── tar.h │ ├── textitem.cpp │ ├── textitem.h │ ├── textpathitem.cpp │ ├── textpathitem.h │ ├── textpointitem.cpp │ ├── textpointitem.h │ ├── tile.h │ ├── tileloader.cpp │ ├── tileloader.h │ ├── transform.cpp │ ├── transform.h │ ├── utm.cpp │ ├── utm.h │ ├── wldfile.cpp │ ├── wldfile.h │ ├── wms.cpp │ ├── wms.h │ ├── wmsmap.cpp │ ├── wmsmap.h │ ├── wmts.cpp │ ├── wmts.h │ ├── wmtsmap.cpp │ ├── wmtsmap.h │ ├── worldfilemap.cpp │ └── worldfilemap.h ├── theme-color.qrc └── theme-grayscale.qrc /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: tumic0 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # C++ objects and libs 2 | *.o 3 | 4 | # Qt-es 5 | /.qmake.stash 6 | moc_*.cpp 7 | moc_*.h 8 | qrc_*.cpp 9 | Makefile* 10 | *.qm 11 | 12 | # Binary 13 | GPXSee 14 | gpxsee 15 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | __Only localization contributions are accepted at the moment, code pull requests will be rejected.__ 2 | 3 | The rationale is, that I want leave the possibility to distribute GPXsee builds in the OS X/Windows 4 | stores under a non-GPL licence open. In the future, code pull requests under a 5 | [QT-like contribution agreement](https://d21tv0wm5mksdn.cloudfront.net/wp-content/uploads/2015/03/Qt-ContributionLicenseAgreement_v1_2_FINAL.pdf) 6 | may become possible. 7 | -------------------------------------------------------------------------------- /cert/mac/gpxsee.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/cert/mac/gpxsee.cer -------------------------------------------------------------------------------- /cert/win/gpxsee.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/cert/win/gpxsee.cer -------------------------------------------------------------------------------- /data/maps/Antarctica.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Antarctica 4 | https://tiles.arcgis.com/tiles/C8EMgrsFcRFL6LrL/arcgis/rest/services/Antarctic_Basemap/MapServer/WMTS/1.0.0/WMTSCapabilities.xml 5 | NOAA National Centers for Environmental Information (NCEI); International Bathymetric Chart of the Southern Ocean (IBCSO); General Bathymetric Chart of the Oceans (GEBCO); Natural Earth 6 | Antarctic_Basemap 7 | default028mm 8 | 9 | -------------------------------------------------------------------------------- /data/maps/OpenFreeMap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | OpenFreeMap 4 | https://tiles.openfreemap.org/planet/latest/$z/$x/$y.pbf 5 | 6 | 7 | © OpenFreeMap © OpenMapTiles © OpenStreetMap contributors 8 | 9 | -------------------------------------------------------------------------------- /data/maps/OpenStreetMap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Open Street Map 4 | https://tile.openstreetmap.org/$z/$x/$y.png 5 | Map data: © OpenStreetMap contributors (ODbL) | Rendering: © OpenStreetMap (CC-BY-SA) 6 | 7 | -------------------------------------------------------------------------------- /data/maps/OpenTopoMap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Open Topo Map 4 | https://a.tile.opentopomap.org/$z/$x/$y.png 5 | 6 | Map data: © OpenStreetMap contributors (ODbL), SRTM | Rendering: © OpenTopoMap (CC-BY-SA) 7 | 8 | -------------------------------------------------------------------------------- /data/maps/USGS-imagery.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | USGS Imagery 4 | https://basemap.nationalmap.gov/ArcGIS/rest/services/USGSImageryOnly/MapServer/tile/$z/$y/$x 5 | 6 | 7 | Map services and data available from U.S. Geological Survey, National Geospatial Program. 8 | 9 | -------------------------------------------------------------------------------- /data/maps/USGS-topo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | USGS Topo 4 | https://basemap.nationalmap.gov/arcgis/rest/services/USGSTopo/MapServer/tile/$z/$y/$x 5 | 6 | Map services and data available from U.S. Geological Survey, National Geospatial Program. 7 | 8 | -------------------------------------------------------------------------------- /data/maps/mtbmap-cz.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mtbmap.cz 4 | https://tile.mtbmap.cz/mtbmap_tiles/$z/$x/$y.png 5 | Map data: OpenStreetMap, USGS | Rendering: Martin Tesař 6 | 7 | -------------------------------------------------------------------------------- /icons/GUI/FlatColor/actions/22x22/application-exit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/GUI/FlatColor/actions/22x22/flag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/GUI/FlatColor/actions/22x22/go-first.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/GUI/FlatColor/actions/22x22/go-last.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/GUI/FlatColor/actions/22x22/go-next.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/GUI/FlatColor/actions/22x22/go-previous.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/GUI/FlatColor/actions/22x22/office-chart-area-stacked.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/GUI/FlatColor/actions/22x22/view-fullscreen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/GUI/FlatColor/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=GPXSee 3 | Inherits=hicolor 4 | Directories=actions/22x22,preferences/48x48 5 | 6 | [actions/22x22] 7 | Size=22 8 | 9 | [preferences/48x48] 10 | Size=48 11 | -------------------------------------------------------------------------------- /icons/GUI/FlatColor/preferences/48x48/gpxsee_data.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/GUI/FlatColor/preferences/48x48/gpxsee_dem.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/GUI/FlatColor/preferences/48x48/gpxsee_poi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/GUI/FlatColor/preferences/48x48/gpxsee_position.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /icons/GUI/Papirus/actions/22x22/document-open-folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /icons/GUI/Papirus/actions/22x22/flag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /icons/GUI/Papirus/actions/22x22/go-last.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /icons/GUI/Papirus/actions/22x22/go-next.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /icons/GUI/Papirus/actions/22x22/go-previous.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /icons/GUI/Papirus/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=GPXSee 3 | Inherits=hicolor 4 | Directories=actions/22x22,preferences/48x48 5 | 6 | [actions/22x22] 7 | Size=22 8 | 9 | [actions/48x48] 10 | Size=48 11 | -------------------------------------------------------------------------------- /icons/GUI/Papirus/preferences: -------------------------------------------------------------------------------- 1 | ../FlatColor/preferences -------------------------------------------------------------------------------- /icons/app/gpxsee.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/app/gpxsee.dia -------------------------------------------------------------------------------- /icons/app/gpxsee.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/app/gpxsee.icns -------------------------------------------------------------------------------- /icons/app/gpxsee.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/app/gpxsee.ico -------------------------------------------------------------------------------- /icons/app/hicolor/128x128/apps/gpxsee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/app/hicolor/128x128/apps/gpxsee.png -------------------------------------------------------------------------------- /icons/app/hicolor/16x16/apps/gpxsee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/app/hicolor/16x16/apps/gpxsee.png -------------------------------------------------------------------------------- /icons/app/hicolor/32x32/apps/gpxsee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/app/hicolor/32x32/apps/gpxsee.png -------------------------------------------------------------------------------- /icons/app/hicolor/48x48/apps/gpxsee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/app/hicolor/48x48/apps/gpxsee.png -------------------------------------------------------------------------------- /icons/app/hicolor/64x64/apps/gpxsee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/app/hicolor/64x64/apps/gpxsee.png -------------------------------------------------------------------------------- /icons/formats/000.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/000.icns -------------------------------------------------------------------------------- /icons/formats/000.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/000.ico -------------------------------------------------------------------------------- /icons/formats/031.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/031.icns -------------------------------------------------------------------------------- /icons/formats/031.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/031.ico -------------------------------------------------------------------------------- /icons/formats/aqm.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/aqm.icns -------------------------------------------------------------------------------- /icons/formats/aqm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/aqm.ico -------------------------------------------------------------------------------- /icons/formats/cup.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/cup.icns -------------------------------------------------------------------------------- /icons/formats/cup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/cup.ico -------------------------------------------------------------------------------- /icons/formats/fit.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/fit.icns -------------------------------------------------------------------------------- /icons/formats/fit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/fit.ico -------------------------------------------------------------------------------- /icons/formats/gemf.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/gemf.icns -------------------------------------------------------------------------------- /icons/formats/gemf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/gemf.ico -------------------------------------------------------------------------------- /icons/formats/ghp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/ghp.icns -------------------------------------------------------------------------------- /icons/formats/ghp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/ghp.ico -------------------------------------------------------------------------------- /icons/formats/gpi.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/gpi.icns -------------------------------------------------------------------------------- /icons/formats/gpi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/gpi.ico -------------------------------------------------------------------------------- /icons/formats/gpx.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/gpx.icns -------------------------------------------------------------------------------- /icons/formats/gpx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/gpx.ico -------------------------------------------------------------------------------- /icons/formats/igc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/igc.icns -------------------------------------------------------------------------------- /icons/formats/igc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/igc.ico -------------------------------------------------------------------------------- /icons/formats/img.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/img.icns -------------------------------------------------------------------------------- /icons/formats/img.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/img.ico -------------------------------------------------------------------------------- /icons/formats/itn.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/itn.icns -------------------------------------------------------------------------------- /icons/formats/itn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/itn.ico -------------------------------------------------------------------------------- /icons/formats/jnx.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/jnx.icns -------------------------------------------------------------------------------- /icons/formats/jnx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/jnx.ico -------------------------------------------------------------------------------- /icons/formats/json.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/json.icns -------------------------------------------------------------------------------- /icons/formats/json.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/json.ico -------------------------------------------------------------------------------- /icons/formats/kap.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/kap.icns -------------------------------------------------------------------------------- /icons/formats/kap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/kap.ico -------------------------------------------------------------------------------- /icons/formats/kml.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/kml.icns -------------------------------------------------------------------------------- /icons/formats/kml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/kml.ico -------------------------------------------------------------------------------- /icons/formats/loc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/loc.icns -------------------------------------------------------------------------------- /icons/formats/loc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/loc.ico -------------------------------------------------------------------------------- /icons/formats/map.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/map.icns -------------------------------------------------------------------------------- /icons/formats/map.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/map.ico -------------------------------------------------------------------------------- /icons/formats/mbts.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/mbts.icns -------------------------------------------------------------------------------- /icons/formats/mbts.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/mbts.ico -------------------------------------------------------------------------------- /icons/formats/nmea.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/nmea.icns -------------------------------------------------------------------------------- /icons/formats/nmea.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/nmea.ico -------------------------------------------------------------------------------- /icons/formats/omd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/omd.icns -------------------------------------------------------------------------------- /icons/formats/omd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/omd.ico -------------------------------------------------------------------------------- /icons/formats/ov2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/ov2.icns -------------------------------------------------------------------------------- /icons/formats/ov2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/ov2.ico -------------------------------------------------------------------------------- /icons/formats/plt.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/plt.icns -------------------------------------------------------------------------------- /icons/formats/plt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/plt.ico -------------------------------------------------------------------------------- /icons/formats/qct.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/qct.icns -------------------------------------------------------------------------------- /icons/formats/qct.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/qct.ico -------------------------------------------------------------------------------- /icons/formats/rmap.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/rmap.icns -------------------------------------------------------------------------------- /icons/formats/rmap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/rmap.ico -------------------------------------------------------------------------------- /icons/formats/rte.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/rte.icns -------------------------------------------------------------------------------- /icons/formats/rte.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/rte.ico -------------------------------------------------------------------------------- /icons/formats/scripts/extensions: -------------------------------------------------------------------------------- 1 | fit:#006600 2 | gpx:#003399 3 | igc:#ff3300 4 | json:#003333 5 | kml:#990000 6 | nmea:#0083d7 7 | plt:#66ff00 8 | rte:#66ff00 9 | tcx:#ffcc00 10 | wpt:#66ff00 11 | loc:#556677 12 | slf:#881199 13 | cup:#20a810 14 | gpi:#fca314 15 | sml:#6434eb 16 | img:#cf0a0a 17 | jnx:#aeff00 18 | kap:#080045 19 | map:#f6ff00 20 | mbts:#ff0062 21 | rmap:#145cba 22 | tba:#367050 23 | aqm:#32a89e 24 | sqlt:#303030 25 | ov2:#a8c920 26 | itn:#b8540d 27 | wld:#c74c8f 28 | omd:#ed09cb 29 | ghp:#ed09cb 30 | qct:#370642 31 | trk:#cccccc 32 | gemf:#147085 33 | 000:#000000 34 | 031:#000000 35 | vtk:#632433 36 | vkx:#00ccff 37 | -------------------------------------------------------------------------------- /icons/formats/scripts/ico.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | while read e; do 4 | IFS=":"; set $e 5 | 6 | EXT=`echo $1 | tr /a-z/ /A-Z/` 7 | sed -e "s/\$EXT/$EXT/" -e "s/\$COLOR/$2/" icon-template.svg > $1.svg 8 | convert -density 400 -background none $1.svg -define icon:auto-resize $1.ico 9 | rm $1.svg 10 | done < extensions 11 | -------------------------------------------------------------------------------- /icons/formats/slf.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/slf.icns -------------------------------------------------------------------------------- /icons/formats/slf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/slf.ico -------------------------------------------------------------------------------- /icons/formats/sml.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/sml.icns -------------------------------------------------------------------------------- /icons/formats/sml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/sml.ico -------------------------------------------------------------------------------- /icons/formats/sqlt.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/sqlt.icns -------------------------------------------------------------------------------- /icons/formats/sqlt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/sqlt.ico -------------------------------------------------------------------------------- /icons/formats/tba.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/tba.icns -------------------------------------------------------------------------------- /icons/formats/tba.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/tba.ico -------------------------------------------------------------------------------- /icons/formats/tcx.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/tcx.icns -------------------------------------------------------------------------------- /icons/formats/tcx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/tcx.ico -------------------------------------------------------------------------------- /icons/formats/trk.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/trk.icns -------------------------------------------------------------------------------- /icons/formats/trk.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/trk.ico -------------------------------------------------------------------------------- /icons/formats/vkx.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/vkx.icns -------------------------------------------------------------------------------- /icons/formats/vkx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/vkx.ico -------------------------------------------------------------------------------- /icons/formats/vtk.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/vtk.icns -------------------------------------------------------------------------------- /icons/formats/vtk.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/vtk.ico -------------------------------------------------------------------------------- /icons/formats/wld.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/wld.icns -------------------------------------------------------------------------------- /icons/formats/wld.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/wld.ico -------------------------------------------------------------------------------- /icons/formats/wpt.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/wpt.icns -------------------------------------------------------------------------------- /icons/formats/wpt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/formats/wpt.ico -------------------------------------------------------------------------------- /icons/map/POI/airfield-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/airport-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/bakery-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/bar-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/barrier-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/beach-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/bridge-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/building-alt1-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/cafe-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/campsite-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/car-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/cemetery-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/charging-station-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/clothing-store-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/college-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/map/POI/communications-tower-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/map/POI/defibrillator-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/drinking-water-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/map/POI/entrance-alt1-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/fire-station-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/fitness-centre-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/garden-centre-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/hospital-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/ice-cream-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/information-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/landmark-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/laundry-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/lighthouse-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/lodging-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/monument-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/mountain-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/museum-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/observation-tower.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/parking-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/pharmacy-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/picnic-site-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/place-of-worship-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/police-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/post-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/rail-light-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/rail-metro-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/religious-christian-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/religious-jewish-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/religious-muslim-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/restaurant-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/restaurant-pizza-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/map/POI/roadblock-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/school-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/shelter-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/skateboard-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/slipway-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/map/POI/swimming-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/telephone-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/town-hall-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/triangle-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/triangle-stroked-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/viewpoint-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/village-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/volcano-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/water-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/POI/zoo-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/map/marine/24h-anchorage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/24h-anchorage.png -------------------------------------------------------------------------------- /icons/map/marine/anchor-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/anchor-line.png -------------------------------------------------------------------------------- /icons/map/marine/anchorage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/anchorage.png -------------------------------------------------------------------------------- /icons/map/marine/anchoring-prohibited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/anchoring-prohibited.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-black-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-black-green.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-black-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-black-orange.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-black-red-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-black-red-black.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-black-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-black-red.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-black-white-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-black-white-black.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-black-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-black-white.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-black-yellow-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-black-yellow-black.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-black-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-black-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-green-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-green-black.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-green-red-green-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-green-red-green-red.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-green-red-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-green-red-green.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-green-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-green-red.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-green-white-green-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-green-white-green-white.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-green-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-green-white.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-green.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-grey.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-orange-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-orange-black.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-orange-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-orange-white.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-orange.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-red-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-red-black.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-red-green-red-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-red-green-red-green.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-red-green-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-red-green-red.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-red-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-red-green.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-red-white-red-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-red-white-red-white.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-red-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-red-white.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-red-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-red-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-red.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-white-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-white-black.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-white-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-white-green.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-white-orange-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-white-orange-white.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-white-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-white-orange.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-white-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-white-red.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-white-yellow-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-white-yellow-white.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-white-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-white-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-white.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-yellow-black-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-yellow-black-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-yellow-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-yellow-black.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-yellow-red-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-yellow-red-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-yellow-white-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-yellow-white-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-yellow-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-yellow-white.png -------------------------------------------------------------------------------- /icons/map/marine/beacon-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/beacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/beacon.png -------------------------------------------------------------------------------- /icons/map/marine/boarding-place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/boarding-place.png -------------------------------------------------------------------------------- /icons/map/marine/breakers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/breakers.png -------------------------------------------------------------------------------- /icons/map/marine/building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/building.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-black-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-black-green.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-black-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-black-orange.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-black-red-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-black-red-black.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-black-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-black-red.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-black-white-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-black-white-black.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-black-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-black-white.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-black-yellow-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-black-yellow-black.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-black-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-black-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-green-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-green-black.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-green-red-green-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-green-red-green-red.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-green-red-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-green-red-green.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-green-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-green-red.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-green-white-green-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-green-white-green-white.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-green-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-green-white.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-green.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-grey.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-orange-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-orange-black.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-orange-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-orange-white.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-orange.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-red-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-red-black.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-red-green-red-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-red-green-red-green.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-red-green-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-red-green-red.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-red-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-red-green.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-red-white-red-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-red-white-red-white.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-red-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-red-white.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-red-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-red-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-red.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-white-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-white-black.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-white-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-white-green.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-white-orange-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-white-orange-white.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-white-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-white-orange.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-white-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-white-red.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-white-yellow-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-white-yellow-white.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-white-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-white-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-white.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-yellow-black-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-yellow-black-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-yellow-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-yellow-black.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-yellow-red-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-yellow-red-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-yellow-white-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-yellow-white-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-yellow-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-yellow-white.png -------------------------------------------------------------------------------- /icons/map/marine/buoy-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/buoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/buoy.png -------------------------------------------------------------------------------- /icons/map/marine/cable-area-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/cable-area-line.png -------------------------------------------------------------------------------- /icons/map/marine/cable-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/cable-line.png -------------------------------------------------------------------------------- /icons/map/marine/cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/cable.png -------------------------------------------------------------------------------- /icons/map/marine/chimney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/chimney.png -------------------------------------------------------------------------------- /icons/map/marine/church.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/church.png -------------------------------------------------------------------------------- /icons/map/marine/coast-guard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/coast-guard.png -------------------------------------------------------------------------------- /icons/map/marine/construction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/construction.png -------------------------------------------------------------------------------- /icons/map/marine/conveyor-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/conveyor-line.png -------------------------------------------------------------------------------- /icons/map/marine/crane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/crane.png -------------------------------------------------------------------------------- /icons/map/marine/current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/current.png -------------------------------------------------------------------------------- /icons/map/marine/degaussing-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/degaussing-line.png -------------------------------------------------------------------------------- /icons/map/marine/deviation-dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/deviation-dolphin.png -------------------------------------------------------------------------------- /icons/map/marine/distance-mark-land.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/distance-mark-land.png -------------------------------------------------------------------------------- /icons/map/marine/distance-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/distance-mark.png -------------------------------------------------------------------------------- /icons/map/marine/dome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/dome.png -------------------------------------------------------------------------------- /icons/map/marine/dumping-ground-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/dumping-ground-line.png -------------------------------------------------------------------------------- /icons/map/marine/dw-anchorage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/dw-anchorage.png -------------------------------------------------------------------------------- /icons/map/marine/dw-route-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/dw-route-line.png -------------------------------------------------------------------------------- /icons/map/marine/eddies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/eddies.png -------------------------------------------------------------------------------- /icons/map/marine/entry-prohibited-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/entry-prohibited-line.png -------------------------------------------------------------------------------- /icons/map/marine/fence-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/fence-line.png -------------------------------------------------------------------------------- /icons/map/marine/ferry-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/ferry-line.png -------------------------------------------------------------------------------- /icons/map/marine/fishing-farm-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/fishing-farm-line.png -------------------------------------------------------------------------------- /icons/map/marine/fishing-farm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/fishing-farm.png -------------------------------------------------------------------------------- /icons/map/marine/fishing-harbor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/fishing-harbor.png -------------------------------------------------------------------------------- /icons/map/marine/fishing-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/fishing-line.png -------------------------------------------------------------------------------- /icons/map/marine/flagstaff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/flagstaff.png -------------------------------------------------------------------------------- /icons/map/marine/fleeting-area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/fleeting-area.png -------------------------------------------------------------------------------- /icons/map/marine/fog-signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/fog-signal.png -------------------------------------------------------------------------------- /icons/map/marine/foul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/foul.png -------------------------------------------------------------------------------- /icons/map/marine/gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/gauge.png -------------------------------------------------------------------------------- /icons/map/marine/international-maritime-boundary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/international-maritime-boundary.png -------------------------------------------------------------------------------- /icons/map/marine/kelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/kelp.png -------------------------------------------------------------------------------- /icons/map/marine/light-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/light-green.png -------------------------------------------------------------------------------- /icons/map/marine/light-major.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/light-major.png -------------------------------------------------------------------------------- /icons/map/marine/light-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/light-red.png -------------------------------------------------------------------------------- /icons/map/marine/light-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/light-white.png -------------------------------------------------------------------------------- /icons/map/marine/light-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/light-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/light.png -------------------------------------------------------------------------------- /icons/map/marine/minefield-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/minefield-line.png -------------------------------------------------------------------------------- /icons/map/marine/monument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/monument.png -------------------------------------------------------------------------------- /icons/map/marine/mooring-buoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/mooring-buoy.png -------------------------------------------------------------------------------- /icons/map/marine/nature-reserve-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/nature-reserve-line.png -------------------------------------------------------------------------------- /icons/map/marine/noanchor-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/noanchor-line.png -------------------------------------------------------------------------------- /icons/map/marine/nofishing-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/nofishing-line.png -------------------------------------------------------------------------------- /icons/map/marine/obstruction-covers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/obstruction-covers.png -------------------------------------------------------------------------------- /icons/map/marine/obstruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/obstruction.png -------------------------------------------------------------------------------- /icons/map/marine/overfalls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/overfalls.png -------------------------------------------------------------------------------- /icons/map/marine/pile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/pile.png -------------------------------------------------------------------------------- /icons/map/marine/pipeline-area-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/pipeline-area-line.png -------------------------------------------------------------------------------- /icons/map/marine/pipeline-overhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/pipeline-overhead.png -------------------------------------------------------------------------------- /icons/map/marine/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/pipeline.png -------------------------------------------------------------------------------- /icons/map/marine/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/platform.png -------------------------------------------------------------------------------- /icons/map/marine/pylon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/pylon.png -------------------------------------------------------------------------------- /icons/map/marine/radar-reflector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/radar-reflector.png -------------------------------------------------------------------------------- /icons/map/marine/radar-transponder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/radar-transponder.png -------------------------------------------------------------------------------- /icons/map/marine/radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/radar.png -------------------------------------------------------------------------------- /icons/map/marine/radio-call-2w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/radio-call-2w.png -------------------------------------------------------------------------------- /icons/map/marine/radio-call-garmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/radio-call-garmin.png -------------------------------------------------------------------------------- /icons/map/marine/radio-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/radio-call.png -------------------------------------------------------------------------------- /icons/map/marine/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/radio.png -------------------------------------------------------------------------------- /icons/map/marine/rescue-station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/rescue-station.png -------------------------------------------------------------------------------- /icons/map/marine/rock-dangerous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/rock-dangerous.png -------------------------------------------------------------------------------- /icons/map/marine/rock-exposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/rock-exposed.png -------------------------------------------------------------------------------- /icons/map/marine/safety-zone-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/safety-zone-line.png -------------------------------------------------------------------------------- /icons/map/marine/sanctuary-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/sanctuary-line.png -------------------------------------------------------------------------------- /icons/map/marine/seaward-limit-of-contiguous-zone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/seaward-limit-of-contiguous-zone.png -------------------------------------------------------------------------------- /icons/map/marine/seaward-limit-of-territorial-sea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/seaward-limit-of-territorial-sea.png -------------------------------------------------------------------------------- /icons/map/marine/shellfish-farm-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/shellfish-farm-line.png -------------------------------------------------------------------------------- /icons/map/marine/shipyard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/shipyard.png -------------------------------------------------------------------------------- /icons/map/marine/silo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/silo.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-black-red-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-black-red-black.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-black-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-black-red.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-black-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-black-white.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-black-yellow-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-black-yellow-black.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-black-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-black-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-green-red-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-green-red-green.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-green-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-green-red.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-green-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-green-white.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-green.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-red-green-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-red-green-red.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-red-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-red-green.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-red-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-red-white.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-red-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-red-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-red.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-white-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-white-green.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-white-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-white-red.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-white-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-white-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-white.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-yellow-black-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-yellow-black-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-yellow-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-yellow-black.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-yellow-red-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-yellow-red-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-yellow-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-yellow-white.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy-yellow.png -------------------------------------------------------------------------------- /icons/map/marine/spar-buoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/spar-buoy.png -------------------------------------------------------------------------------- /icons/map/marine/straight-territorial-sea-baseline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/straight-territorial-sea-baseline.png -------------------------------------------------------------------------------- /icons/map/marine/tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/tank.png -------------------------------------------------------------------------------- /icons/map/marine/tanker-anchorage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/tanker-anchorage.png -------------------------------------------------------------------------------- /icons/map/marine/tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/tower.png -------------------------------------------------------------------------------- /icons/map/marine/triangulation-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/triangulation-point.png -------------------------------------------------------------------------------- /icons/map/marine/turning-basin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/turning-basin.png -------------------------------------------------------------------------------- /icons/map/marine/windmill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/windmill.png -------------------------------------------------------------------------------- /icons/map/marine/windmotor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/windmotor.png -------------------------------------------------------------------------------- /icons/map/marine/wreck-dangerous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/wreck-dangerous.png -------------------------------------------------------------------------------- /icons/map/marine/wreck-exposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/wreck-exposed.png -------------------------------------------------------------------------------- /icons/map/marine/wreck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/wreck.png -------------------------------------------------------------------------------- /icons/map/marine/yacht-harbor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/map/marine/yacht-harbor.png -------------------------------------------------------------------------------- /icons/map/patterns/cemetery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/map/patterns/military-area.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/map/patterns/nature-reserve.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/map/patterns/orchard.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/map/patterns/vineyard.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/map/patterns/wetland.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/map/symbols/bunker.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /icons/map/symbols/cliff.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/map/symbols/cross.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/map/symbols/saddle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/symbols/ATV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/ATV.png -------------------------------------------------------------------------------- /icons/symbols/Airport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Airport.png -------------------------------------------------------------------------------- /icons/symbols/Alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Alert.png -------------------------------------------------------------------------------- /icons/symbols/Amusement Park.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Amusement Park.png -------------------------------------------------------------------------------- /icons/symbols/Anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Anchor.png -------------------------------------------------------------------------------- /icons/symbols/Ballpark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Ballpark.png -------------------------------------------------------------------------------- /icons/symbols/Bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Bank.png -------------------------------------------------------------------------------- /icons/symbols/Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Bar.png -------------------------------------------------------------------------------- /icons/symbols/Beach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Beach.png -------------------------------------------------------------------------------- /icons/symbols/Big Game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Big Game.png -------------------------------------------------------------------------------- /icons/symbols/Bike Trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Bike Trail.png -------------------------------------------------------------------------------- /icons/symbols/Boat Ramp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Boat Ramp.png -------------------------------------------------------------------------------- /icons/symbols/Bowling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Bowling.png -------------------------------------------------------------------------------- /icons/symbols/Bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Bridge.png -------------------------------------------------------------------------------- /icons/symbols/Building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Building.png -------------------------------------------------------------------------------- /icons/symbols/Campground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Campground.png -------------------------------------------------------------------------------- /icons/symbols/Car Rental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Car Rental.png -------------------------------------------------------------------------------- /icons/symbols/Car Repair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Car Repair.png -------------------------------------------------------------------------------- /icons/symbols/Car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Car.png -------------------------------------------------------------------------------- /icons/symbols/Cemetary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Cemetary.png -------------------------------------------------------------------------------- /icons/symbols/Checkpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Checkpoint.png -------------------------------------------------------------------------------- /icons/symbols/Church.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Church.png -------------------------------------------------------------------------------- /icons/symbols/Crossing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Crossing.png -------------------------------------------------------------------------------- /icons/symbols/Dam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Dam.png -------------------------------------------------------------------------------- /icons/symbols/Danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Danger.png -------------------------------------------------------------------------------- /icons/symbols/Drinking Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Drinking Water.png -------------------------------------------------------------------------------- /icons/symbols/Fastfood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Fastfood.png -------------------------------------------------------------------------------- /icons/symbols/Ferry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Ferry.png -------------------------------------------------------------------------------- /icons/symbols/First Aid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/First Aid.png -------------------------------------------------------------------------------- /icons/symbols/First Category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/First Category.png -------------------------------------------------------------------------------- /icons/symbols/Fishing Area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Fishing Area.png -------------------------------------------------------------------------------- /icons/symbols/Flag, Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Flag, Blue.png -------------------------------------------------------------------------------- /icons/symbols/Flag, Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Flag, Green.png -------------------------------------------------------------------------------- /icons/symbols/Flag, Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Flag, Red.png -------------------------------------------------------------------------------- /icons/symbols/Flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Flag.png -------------------------------------------------------------------------------- /icons/symbols/Food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Food.png -------------------------------------------------------------------------------- /icons/symbols/Forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Forest.png -------------------------------------------------------------------------------- /icons/symbols/Fourth Category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Fourth Category.png -------------------------------------------------------------------------------- /icons/symbols/Funicular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Funicular.png -------------------------------------------------------------------------------- /icons/symbols/Furbearer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Furbearer.png -------------------------------------------------------------------------------- /icons/symbols/Gas Station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Gas Station.png -------------------------------------------------------------------------------- /icons/symbols/Gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Gear.png -------------------------------------------------------------------------------- /icons/symbols/Geocache Found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Geocache Found.png -------------------------------------------------------------------------------- /icons/symbols/Geocache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Geocache.png -------------------------------------------------------------------------------- /icons/symbols/Ghost Town.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Ghost Town.png -------------------------------------------------------------------------------- /icons/symbols/Golf Course.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Golf Course.png -------------------------------------------------------------------------------- /icons/symbols/Ground Transportation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Ground Transportation.png -------------------------------------------------------------------------------- /icons/symbols/Heliport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Heliport.png -------------------------------------------------------------------------------- /icons/symbols/Hors Category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Hors Category.png -------------------------------------------------------------------------------- /icons/symbols/Hunting Area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Hunting Area.png -------------------------------------------------------------------------------- /icons/symbols/Iceskating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Iceskating.png -------------------------------------------------------------------------------- /icons/symbols/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Info.png -------------------------------------------------------------------------------- /icons/symbols/Information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Information.png -------------------------------------------------------------------------------- /icons/symbols/Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Left.png -------------------------------------------------------------------------------- /icons/symbols/Library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Library.png -------------------------------------------------------------------------------- /icons/symbols/Live Theater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Live Theater.png -------------------------------------------------------------------------------- /icons/symbols/Lodge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Lodge.png -------------------------------------------------------------------------------- /icons/symbols/Lodging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Lodging.png -------------------------------------------------------------------------------- /icons/symbols/Marina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Marina.png -------------------------------------------------------------------------------- /icons/symbols/Medical Facility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Medical Facility.png -------------------------------------------------------------------------------- /icons/symbols/Meeting Spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Meeting Spot.png -------------------------------------------------------------------------------- /icons/symbols/Military.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Military.png -------------------------------------------------------------------------------- /icons/symbols/Mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Mine.png -------------------------------------------------------------------------------- /icons/symbols/Movie Theater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Movie Theater.png -------------------------------------------------------------------------------- /icons/symbols/Museum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Museum.png -------------------------------------------------------------------------------- /icons/symbols/Obstacle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Obstacle.png -------------------------------------------------------------------------------- /icons/symbols/Oil Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Oil Field.png -------------------------------------------------------------------------------- /icons/symbols/Overlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Overlook.png -------------------------------------------------------------------------------- /icons/symbols/Parachute Area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Parachute Area.png -------------------------------------------------------------------------------- /icons/symbols/Park.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Park.png -------------------------------------------------------------------------------- /icons/symbols/Parking Area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Parking Area.png -------------------------------------------------------------------------------- /icons/symbols/Pharmacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Pharmacy.png -------------------------------------------------------------------------------- /icons/symbols/Picnic Area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Picnic Area.png -------------------------------------------------------------------------------- /icons/symbols/Pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Pizza.png -------------------------------------------------------------------------------- /icons/symbols/Police Station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Police Station.png -------------------------------------------------------------------------------- /icons/symbols/Post Office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Post Office.png -------------------------------------------------------------------------------- /icons/symbols/RV Park.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/RV Park.png -------------------------------------------------------------------------------- /icons/symbols/Radio Beacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Radio Beacon.png -------------------------------------------------------------------------------- /icons/symbols/Railway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Railway.png -------------------------------------------------------------------------------- /icons/symbols/Residence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Residence.png -------------------------------------------------------------------------------- /icons/symbols/Rest Area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Rest Area.png -------------------------------------------------------------------------------- /icons/symbols/Restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Restaurant.png -------------------------------------------------------------------------------- /icons/symbols/Restroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Restroom.png -------------------------------------------------------------------------------- /icons/symbols/Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Right.png -------------------------------------------------------------------------------- /icons/symbols/Scenic Area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Scenic Area.png -------------------------------------------------------------------------------- /icons/symbols/School.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/School.png -------------------------------------------------------------------------------- /icons/symbols/Second Category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Second Category.png -------------------------------------------------------------------------------- /icons/symbols/Segment End.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Segment End.png -------------------------------------------------------------------------------- /icons/symbols/Segment Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Segment Start.png -------------------------------------------------------------------------------- /icons/symbols/Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Service.png -------------------------------------------------------------------------------- /icons/symbols/Sharp Curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Sharp Curve.png -------------------------------------------------------------------------------- /icons/symbols/Sharp Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Sharp Left.png -------------------------------------------------------------------------------- /icons/symbols/Sharp Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Sharp Right.png -------------------------------------------------------------------------------- /icons/symbols/Shelter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Shelter.png -------------------------------------------------------------------------------- /icons/symbols/Shipwreck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Shipwreck.png -------------------------------------------------------------------------------- /icons/symbols/Shopping Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Shopping Center.png -------------------------------------------------------------------------------- /icons/symbols/Shower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Shower.png -------------------------------------------------------------------------------- /icons/symbols/Ski Resort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Ski Resort.png -------------------------------------------------------------------------------- /icons/symbols/Skiing Area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Skiing Area.png -------------------------------------------------------------------------------- /icons/symbols/Skull and Crossbones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Skull and Crossbones.png -------------------------------------------------------------------------------- /icons/symbols/Slight Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Slight Left.png -------------------------------------------------------------------------------- /icons/symbols/Slight Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Slight Right.png -------------------------------------------------------------------------------- /icons/symbols/Small Game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Small Game.png -------------------------------------------------------------------------------- /icons/symbols/Sprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Sprint.png -------------------------------------------------------------------------------- /icons/symbols/Stadium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Stadium.png -------------------------------------------------------------------------------- /icons/symbols/Steep Incline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Steep Incline.png -------------------------------------------------------------------------------- /icons/symbols/Store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Store.png -------------------------------------------------------------------------------- /icons/symbols/Straight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Straight.png -------------------------------------------------------------------------------- /icons/symbols/Summit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Summit.png -------------------------------------------------------------------------------- /icons/symbols/Tall Tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Tall Tower.png -------------------------------------------------------------------------------- /icons/symbols/Telephone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Telephone.png -------------------------------------------------------------------------------- /icons/symbols/Third Category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Third Category.png -------------------------------------------------------------------------------- /icons/symbols/Toilet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Toilet.png -------------------------------------------------------------------------------- /icons/symbols/Trail Head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Trail Head.png -------------------------------------------------------------------------------- /icons/symbols/Transport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Transport.png -------------------------------------------------------------------------------- /icons/symbols/Truck Stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Truck Stop.png -------------------------------------------------------------------------------- /icons/symbols/Truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Truck.png -------------------------------------------------------------------------------- /icons/symbols/Tunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Tunnel.png -------------------------------------------------------------------------------- /icons/symbols/U-Turn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/U-Turn.png -------------------------------------------------------------------------------- /icons/symbols/Ultralight Area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Ultralight Area.png -------------------------------------------------------------------------------- /icons/symbols/Upland Game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Upland Game.png -------------------------------------------------------------------------------- /icons/symbols/Valley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Valley.png -------------------------------------------------------------------------------- /icons/symbols/Water Hydrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Water Hydrant.png -------------------------------------------------------------------------------- /icons/symbols/Water Source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Water Source.png -------------------------------------------------------------------------------- /icons/symbols/Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Water.png -------------------------------------------------------------------------------- /icons/symbols/Waterfowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Waterfowl.png -------------------------------------------------------------------------------- /icons/symbols/Waypoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Waypoint.png -------------------------------------------------------------------------------- /icons/symbols/Winery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Winery.png -------------------------------------------------------------------------------- /icons/symbols/Zoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/icons/symbols/Zoo.png -------------------------------------------------------------------------------- /lang/gpxsee_en.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | GUI 6 | 7 | 8 | %n files 9 | 10 | %n file 11 | %n files 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /pkg/android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/pkg/android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /pkg/android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/pkg/android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /pkg/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/pkg/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /pkg/android/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/pkg/android/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /pkg/android/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/pkg/android/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /pkg/android/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumic0/GPXSee/f07f3de19f6c74ac53ab7a6b3a4588ae58f5ee45/pkg/android/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /pkg/android/src/org/gpxsee/gpxsee/Activity.java: -------------------------------------------------------------------------------- 1 | package org.gpxsee.gpxsee; 2 | 3 | import android.content.Intent; 4 | 5 | public class Activity extends org.qtproject.qt.android.bindings.QtActivity 6 | { 7 | @Override 8 | public void onNewIntent(Intent intent) 9 | { 10 | setIntent(intent); 11 | } 12 | 13 | public String intentPath() 14 | { 15 | String path = null; 16 | 17 | Intent intent = getIntent(); 18 | if (intent != null) { 19 | if (intent.getAction() == Intent.ACTION_VIEW) 20 | path = intent.getDataString(); 21 | setIntent(null); 22 | } 23 | 24 | return path; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/GUI/app.h: -------------------------------------------------------------------------------- 1 | #ifndef APP_H 2 | #define APP_H 3 | 4 | #include 5 | 6 | class GUI; 7 | 8 | class App : public QApplication 9 | { 10 | Q_OBJECT 11 | 12 | public: 13 | App(int &argc, char **argv); 14 | ~App(); 15 | int run(); 16 | 17 | protected: 18 | bool event(QEvent *event); 19 | 20 | #ifdef Q_OS_ANDROID 21 | private slots: 22 | void appStateChanged(Qt::ApplicationState state); 23 | #endif // Q_OS_ANDROID 24 | 25 | private: 26 | void loadDatums(); 27 | void loadPCSs(); 28 | 29 | GUI *_gui; 30 | }; 31 | 32 | #endif // APP_H 33 | -------------------------------------------------------------------------------- /src/GUI/authenticationwidget.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include "authenticationwidget.h" 3 | 4 | AuthenticationWidget::AuthenticationWidget(QWidget *parent) : QWidget(parent) 5 | { 6 | _username = new QLineEdit(); 7 | _password = new PasswordEdit(); 8 | #ifdef Q_OS_MAC 9 | /* A hack to fix the issue with different field sizes on Mac */ 10 | _username->setMinimumWidth(150); 11 | _password->setMinimumWidth(150); 12 | #endif // Q_OS_MAC 13 | 14 | QFormLayout *layout = new QFormLayout(); 15 | layout->addRow(tr("Username:"), _username); 16 | layout->addRow(tr("Password:"), _password); 17 | layout->setContentsMargins(0, 0, 0, 0); 18 | 19 | setLayout(layout); 20 | } 21 | -------------------------------------------------------------------------------- /src/GUI/cadencegraphitem.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include "tooltip.h" 3 | #include "cadencegraphitem.h" 4 | 5 | 6 | CadenceGraphItem::CadenceGraphItem(const Graph &graph, GraphType type, 7 | int width, const QColor &color, QGraphicsItem *parent) 8 | : GraphItem(graph, type, width, color, Qt::SolidLine, parent) 9 | { 10 | } 11 | 12 | ToolTip CadenceGraphItem::info(bool extended) const 13 | { 14 | Q_UNUSED(extended); 15 | ToolTip tt; 16 | QLocale l(QLocale::system()); 17 | 18 | tt.insert(tr("Maximum"), l.toString(max(), 'f', 1) 19 | + UNIT_SPACE + tr("rpm")); 20 | tt.insert(tr("Average"), l.toString(avg(), 'f', 1) 21 | + UNIT_SPACE + tr("rpm")); 22 | 23 | return tt; 24 | } 25 | -------------------------------------------------------------------------------- /src/GUI/cadencegraphitem.h: -------------------------------------------------------------------------------- 1 | #ifndef CADENCEGRAPHITEM_H 2 | #define CADENCEGRAPHITEM_H 3 | 4 | #include "graphitem.h" 5 | 6 | class CadenceGraphItem : public GraphItem 7 | { 8 | Q_OBJECT 9 | 10 | public: 11 | CadenceGraphItem(const Graph &graph, GraphType type, int width, 12 | const QColor &color, QGraphicsItem *parent = 0); 13 | 14 | ToolTip info(bool extended) const; 15 | }; 16 | 17 | #endif // CADENCEGRAPHITEM_H 18 | -------------------------------------------------------------------------------- /src/GUI/colorbox.h: -------------------------------------------------------------------------------- 1 | #ifndef COLORBOX_H 2 | #define COLORBOX_H 3 | 4 | #include 5 | 6 | class ColorBox : public QWidget 7 | { 8 | Q_OBJECT 9 | 10 | public: 11 | ColorBox(QWidget *parent = 0); 12 | 13 | const QColor &color() const {return _color;} 14 | void setColor(const QColor &color); 15 | void enableAlphaChannel(bool enable) {_alpha = enable;} 16 | 17 | QSize sizeHint() const; 18 | 19 | signals: 20 | void colorChanged(const QColor &color); 21 | 22 | protected: 23 | void mousePressEvent(QMouseEvent *event); 24 | void paintEvent(QPaintEvent *event); 25 | 26 | private: 27 | QColor _color; 28 | bool _alpha; 29 | }; 30 | 31 | #endif // COLORBOX_H 32 | -------------------------------------------------------------------------------- /src/GUI/font.h: -------------------------------------------------------------------------------- 1 | #ifndef FONT_H 2 | #define FONT_H 3 | 4 | #define FONT_FAMILY "Arial" 5 | #define FONT_SIZE 12 // px 6 | 7 | #endif // FONT_H 8 | -------------------------------------------------------------------------------- /src/GUI/format.h: -------------------------------------------------------------------------------- 1 | #ifndef FORMAT_H 2 | #define FORMAT_H 3 | 4 | #include 5 | #include "units.h" 6 | 7 | class Coordinates; 8 | 9 | enum CoordinatesFormat { 10 | DecimalDegrees, 11 | DegreesMinutes, 12 | DMS 13 | }; 14 | 15 | namespace Format 16 | { 17 | QString timeSpan(qreal time, bool full = true); 18 | QString distance(qreal value, Units units); 19 | QString elevation(qreal value, Units units); 20 | QString coordinates(const Coordinates &c, CoordinatesFormat type); 21 | QString lon(const Coordinates &c, CoordinatesFormat type); 22 | QString lat(const Coordinates &c, CoordinatesFormat type); 23 | } 24 | 25 | #endif // FORMAT_H 26 | -------------------------------------------------------------------------------- /src/GUI/gearratiographitem.h: -------------------------------------------------------------------------------- 1 | #ifndef GEARRATIOGRAPHITEM_H 2 | #define GEARRATIOGRAPHITEM_H 3 | 4 | #include 5 | #include "graphitem.h" 6 | 7 | class GearRatioGraphItem : public GraphItem 8 | { 9 | Q_OBJECT 10 | 11 | public: 12 | GearRatioGraphItem(const Graph &graph, GraphType type, int width, 13 | const QColor &color, QGraphicsItem *parent = 0); 14 | 15 | qreal top() const {return _top;} 16 | const QMap &map() const {return _map;} 17 | 18 | ToolTip info(bool extended) const; 19 | 20 | private: 21 | QMap _map; 22 | qreal _top; 23 | }; 24 | 25 | #endif // GEARRATIOGRAPHITEM_H 26 | -------------------------------------------------------------------------------- /src/GUI/griditem.h: -------------------------------------------------------------------------------- 1 | #ifndef GRIDITEM_H 2 | #define GRIDITEM_H 3 | 4 | #include 5 | 6 | class GridItem : public QGraphicsItem 7 | { 8 | public: 9 | GridItem(QGraphicsItem *parent = 0): QGraphicsItem(parent) {} 10 | 11 | QRectF boundingRect() const {return _boundingRect;} 12 | void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, 13 | QWidget *widget); 14 | 15 | void setTicks(const QList &x, const QList &y); 16 | void setSize(const QSizeF &size); 17 | 18 | private: 19 | QRectF _boundingRect; 20 | QList _xTicks, _yTicks; 21 | }; 22 | 23 | #endif // GRIDITEM_H 24 | -------------------------------------------------------------------------------- /src/GUI/heartrategraphitem.h: -------------------------------------------------------------------------------- 1 | #ifndef HEARTRATEGRAPHITEM_H 2 | #define HEARTRATEGRAPHITEM_H 3 | 4 | #include "graphitem.h" 5 | 6 | class HeartRateGraphItem : public GraphItem 7 | { 8 | Q_OBJECT 9 | 10 | public: 11 | HeartRateGraphItem(const Graph &graph, GraphType type, int width, 12 | const QColor &color, QGraphicsItem *parent = 0); 13 | 14 | ToolTip info(bool extended) const; 15 | }; 16 | 17 | #endif // HEARTRATEGRAPHITEM_H 18 | -------------------------------------------------------------------------------- /src/GUI/infolabel.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include "infolabel.h" 3 | 4 | InfoLabel::InfoLabel(const QString &text, QWidget *parent) 5 | : QLabel(text, parent) 6 | { 7 | QFont f(font()); 8 | #ifdef Q_OS_MAC 9 | f.setPointSize(qMax(10, f.pointSize() - 2)); 10 | #else // Q_OS_MAC 11 | f.setPointSize(f.pointSize() - 1); 12 | #endif // Q_OS_MAC 13 | setWordWrap(true); 14 | setFont(f); 15 | } 16 | -------------------------------------------------------------------------------- /src/GUI/infolabel.h: -------------------------------------------------------------------------------- 1 | #ifndef INFOLABEL_H 2 | #define INFOLABEL_H 3 | 4 | #include 5 | 6 | class InfoLabel : public QLabel 7 | { 8 | public: 9 | InfoLabel(const QString &text, QWidget *parent = 0); 10 | }; 11 | 12 | #endif // INFOLABEL_H 13 | -------------------------------------------------------------------------------- /src/GUI/markeritem.h: -------------------------------------------------------------------------------- 1 | #ifndef MARKERITEM_H 2 | #define MARKERITEM_H 3 | 4 | #include 5 | #include 6 | 7 | class MarkerItem : public QGraphicsItem 8 | { 9 | public: 10 | MarkerItem(QGraphicsItem *parent = 0); 11 | 12 | QRectF boundingRect() const; 13 | void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, 14 | QWidget *widget); 15 | 16 | void setColor(const QColor &color); 17 | 18 | private: 19 | QColor _color; 20 | }; 21 | 22 | #endif // MARKERITEM_H 23 | -------------------------------------------------------------------------------- /src/GUI/oddspinbox.cpp: -------------------------------------------------------------------------------- 1 | #include "oddspinbox.h" 2 | 3 | OddSpinBox::OddSpinBox(QWidget *parent) : QSpinBox(parent) 4 | { 5 | setSingleStep(2); 6 | setMinimum(1); 7 | } 8 | 9 | QValidator::State OddSpinBox::validate(QString &text, int &pos) const 10 | { 11 | Q_UNUSED(pos); 12 | bool ok; 13 | int val; 14 | 15 | val = text.toInt(&ok); 16 | if (!ok || val < 0 || val % 2 == 0) 17 | return QValidator::Invalid; 18 | 19 | return QValidator::Acceptable; 20 | } 21 | -------------------------------------------------------------------------------- /src/GUI/oddspinbox.h: -------------------------------------------------------------------------------- 1 | #ifndef ODDSPINBOX_H 2 | #define ODDSPINBOX_H 3 | 4 | #include 5 | 6 | class OddSpinBox : public QSpinBox 7 | { 8 | public: 9 | OddSpinBox(QWidget *parent = 0); 10 | 11 | protected: 12 | QValidator::State validate(QString &text, int &pos) const; 13 | }; 14 | 15 | #endif // ODDSPINBOX_H 16 | -------------------------------------------------------------------------------- /src/GUI/passwordedit.h: -------------------------------------------------------------------------------- 1 | #ifndef PASSWORDEDIT_H 2 | #define PASSWORDEDIT_H 3 | 4 | #include 5 | 6 | class PasswordEdit : public QLineEdit 7 | { 8 | Q_OBJECT 9 | 10 | public: 11 | PasswordEdit(QWidget *parent = 0); 12 | 13 | private slots: 14 | void showPassword(); 15 | 16 | private: 17 | QAction *_action; 18 | bool _show; 19 | }; 20 | 21 | #endif // PASSWORDEDIT_H 22 | -------------------------------------------------------------------------------- /src/GUI/percentslider.h: -------------------------------------------------------------------------------- 1 | #ifndef PERCENTSLIDER_H 2 | #define PERCENTSLIDER_H 3 | 4 | #include 5 | 6 | class QSlider; 7 | class QLabel; 8 | 9 | class PercentSlider : public QWidget 10 | { 11 | Q_OBJECT 12 | 13 | public: 14 | PercentSlider(QWidget *parent = 0); 15 | 16 | int value() const; 17 | 18 | public slots: 19 | void setValue(int value); 20 | 21 | private slots: 22 | void updateLabel(int value); 23 | 24 | private: 25 | QSlider *_slider; 26 | QLabel *_label; 27 | }; 28 | 29 | #endif // PERCENTSLIDER_H 30 | -------------------------------------------------------------------------------- /src/GUI/pluginparameters.h: -------------------------------------------------------------------------------- 1 | #ifndef PLUGINPARAMETERS_H 2 | #define PLUGINPARAMETERS_H 3 | 4 | #include 5 | #include 6 | 7 | class PluginParameters : public QWidget 8 | { 9 | Q_OBJECT 10 | 11 | public: 12 | PluginParameters(const QString &plugin, 13 | const QMap ¶ms, QWidget *parent = 0); 14 | 15 | const QMap ¶meters(); 16 | 17 | public slots: 18 | void setPlugin(const QString &plugin); 19 | 20 | private: 21 | void saveParameters(); 22 | 23 | QMap _params; 24 | QString _plugin; 25 | }; 26 | 27 | #endif // PLUGINPARAMETERS_H 28 | -------------------------------------------------------------------------------- /src/GUI/poiaction.h: -------------------------------------------------------------------------------- 1 | #ifndef POIACTION_H 2 | #define POIACTION_H 3 | 4 | #include 5 | #include "common/util.h" 6 | 7 | class POIAction : public QAction 8 | { 9 | Q_OBJECT 10 | 11 | public: 12 | POIAction(const QString &path, QObject *parent = 0) 13 | : QAction(Util::file2name(path), parent) 14 | { 15 | setMenuRole(QAction::NoRole); 16 | setCheckable(true); 17 | setData(path); 18 | } 19 | }; 20 | 21 | #endif // POIACTION_H 22 | -------------------------------------------------------------------------------- /src/GUI/popup.h: -------------------------------------------------------------------------------- 1 | #ifndef POPUP_H 2 | #define POPUP_H 3 | 4 | class QPoint; 5 | class QWidget; 6 | class ToolTip; 7 | 8 | class Popup 9 | { 10 | public: 11 | static void show(const QPoint &pos, const ToolTip &toolTip, QWidget *w); 12 | static void clear(); 13 | }; 14 | 15 | #endif // POPUP_H 16 | -------------------------------------------------------------------------------- /src/GUI/powergraph.h: -------------------------------------------------------------------------------- 1 | #ifndef POWERGRAPH_H 2 | #define POWERGRAPH_H 3 | 4 | #include "graphtab.h" 5 | 6 | class PowerGraphItem; 7 | 8 | class PowerGraph : public GraphTab 9 | { 10 | Q_OBJECT 11 | 12 | public: 13 | PowerGraph(QWidget *parent = 0); 14 | ~PowerGraph(); 15 | 16 | QString label() const {return tr("Power");} 17 | QList loadData(const Data &data, Map *map); 18 | void clear(); 19 | void showTracks(bool show); 20 | 21 | private: 22 | qreal avg() const; 23 | qreal max() const {return bounds().bottom();} 24 | void setInfo(); 25 | 26 | QVector _avg; 27 | 28 | bool _showTracks; 29 | QList _tracks; 30 | }; 31 | 32 | #endif // POWERGRAPH_H 33 | -------------------------------------------------------------------------------- /src/GUI/powergraphitem.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include "tooltip.h" 3 | #include "powergraphitem.h" 4 | 5 | 6 | PowerGraphItem::PowerGraphItem(const Graph &graph, GraphType type, int width, 7 | const QColor &color, QGraphicsItem *parent) 8 | : GraphItem(graph, type, width, color, Qt::SolidLine, parent) 9 | { 10 | } 11 | 12 | ToolTip PowerGraphItem::info(bool extended) const 13 | { 14 | Q_UNUSED(extended); 15 | ToolTip tt; 16 | QLocale l(QLocale::system()); 17 | 18 | tt.insert(tr("Maximum"), l.toString(max(), 'f', 1) 19 | + UNIT_SPACE + tr("W")); 20 | tt.insert(tr("Average"), l.toString(avg(), 'f', 1) 21 | + UNIT_SPACE + tr("W")); 22 | 23 | return tt; 24 | } 25 | -------------------------------------------------------------------------------- /src/GUI/powergraphitem.h: -------------------------------------------------------------------------------- 1 | #ifndef POWERGRAPHITEM_H 2 | #define POWERGRAPHITEM_H 3 | 4 | #include "graphitem.h" 5 | 6 | class PowerGraphItem : public GraphItem 7 | { 8 | Q_OBJECT 9 | 10 | public: 11 | PowerGraphItem(const Graph &graph, GraphType type, int width, 12 | const QColor &color, QGraphicsItem *parent = 0); 13 | 14 | ToolTip info(bool extended) const; 15 | }; 16 | 17 | #endif // POWERGRAPHITEM_H 18 | -------------------------------------------------------------------------------- /src/GUI/projectioncombobox.cpp: -------------------------------------------------------------------------------- 1 | #include "projectioncombobox.h" 2 | 3 | ProjectionComboBox::ProjectionComboBox(const QList > &list, 4 | QWidget *parent) : QComboBox(parent) 5 | { 6 | setSizeAdjustPolicy(AdjustToMinimumContentsLengthWithIcon); 7 | setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); 8 | 9 | for (int i = 0; i < list.size(); i++) { 10 | const KV &proj = list.at(i); 11 | QString text = QString::number(proj.key()) + " - " + proj.value(); 12 | addItem(text, QVariant(proj.key())); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/GUI/projectioncombobox.h: -------------------------------------------------------------------------------- 1 | #ifndef PROJECTIONCOMBOBOX_H 2 | #define PROJECTIONCOMBOBOX_H 3 | 4 | #include 5 | #include 6 | #include "common/kv.h" 7 | 8 | class ProjectionComboBox : public QComboBox 9 | { 10 | public: 11 | ProjectionComboBox(const QList > &list, QWidget *parent = 0); 12 | }; 13 | 14 | #endif // PROJECTIONCOMBOBOX_H 15 | -------------------------------------------------------------------------------- /src/GUI/routeitem.h: -------------------------------------------------------------------------------- 1 | #ifndef ROUTEITEM_H 2 | #define ROUTEITEM_H 3 | 4 | #include "data/link.h" 5 | #include "pathitem.h" 6 | 7 | class Map; 8 | class Route; 9 | class WaypointItem; 10 | 11 | class RouteItem : public PathItem 12 | { 13 | Q_OBJECT 14 | 15 | public: 16 | RouteItem(const Route &route, Map *map, QGraphicsItem *parent = 0); 17 | 18 | void setMap(Map *map); 19 | void setDigitalZoom(int zoom); 20 | 21 | void showWaypoints(bool show); 22 | void showWaypointLabels(bool show); 23 | void showWaypointIcons(bool show); 24 | 25 | ToolTip info(bool extended) const; 26 | 27 | private: 28 | QVector _waypoints; 29 | }; 30 | 31 | #endif // ROUTEITEM_H 32 | -------------------------------------------------------------------------------- /src/GUI/searchpointer.h: -------------------------------------------------------------------------------- 1 | #ifndef SEARCHPOINTER_H 2 | #define SEARCHPOINTER_H 3 | 4 | #include "common/hash.h" 5 | 6 | template 7 | class SearchPointer 8 | { 9 | public: 10 | SearchPointer(const T *ptr) : _ptr(ptr) {} 11 | 12 | const T *data() const {return _ptr;} 13 | bool operator==(const SearchPointer &other) const 14 | {return *data() == *(other.data());} 15 | 16 | private: 17 | const T *_ptr; 18 | }; 19 | 20 | template 21 | inline HASH_T qHash(const SearchPointer &t) 22 | { 23 | return ::qHash(*(t.data())); 24 | } 25 | 26 | #endif // SEARCHPOINTER_H 27 | -------------------------------------------------------------------------------- /src/GUI/stylecombobox.h: -------------------------------------------------------------------------------- 1 | #ifndef STYLECOMBOBOX_H 2 | #define STYLECOMBOBOX_H 3 | 4 | #include 5 | 6 | class StyleComboBox : public QComboBox 7 | { 8 | Q_OBJECT 9 | 10 | public: 11 | StyleComboBox(QWidget *parent = 0); 12 | 13 | void setValue(Qt::PenStyle value); 14 | 15 | protected: 16 | void changeEvent(QEvent *e); 17 | 18 | private: 19 | QIcon icon(Qt::PenStyle style); 20 | }; 21 | 22 | #endif // STYLECOMBOBOX_H 23 | -------------------------------------------------------------------------------- /src/GUI/temperaturegraphitem.h: -------------------------------------------------------------------------------- 1 | #ifndef TEMPERATUREGRAPHITEM_H 2 | #define TEMPERATUREGRAPHITEM_H 3 | 4 | #include "graphitem.h" 5 | 6 | class TemperatureGraphItem : public GraphItem 7 | { 8 | Q_OBJECT 9 | 10 | public: 11 | TemperatureGraphItem(const Graph &graph, GraphType type, int width, 12 | const QColor &color, QGraphicsItem *parent = 0); 13 | 14 | qreal max() const {return _max;} 15 | qreal min() const {return _min;} 16 | qreal avg() const {return _avg;} 17 | 18 | ToolTip info(bool extended) const; 19 | 20 | private: 21 | qreal _min, _max, _avg; 22 | }; 23 | 24 | #endif // TEMPERATUREGRAPHITEM_H 25 | -------------------------------------------------------------------------------- /src/GUI/thumbnail.h: -------------------------------------------------------------------------------- 1 | #ifndef THUMBNAIL_H 2 | #define THUMBNAIL_H 3 | 4 | #include 5 | 6 | class ImageInfo; 7 | 8 | class Thumbnail : public QLabel 9 | { 10 | public: 11 | Thumbnail(const QString &path, int limit, QWidget *parent = 0); 12 | 13 | protected: 14 | void mousePressEvent(QMouseEvent *event); 15 | 16 | private: 17 | QString _path; 18 | }; 19 | 20 | #endif // THUMBNAIL_H 21 | -------------------------------------------------------------------------------- /src/GUI/timetype.h: -------------------------------------------------------------------------------- 1 | #ifndef TIMETYPE_H 2 | #define TIMETYPE_H 3 | 4 | enum TimeType { 5 | Total, 6 | Moving 7 | }; 8 | 9 | #endif // TIMETYPE_H 10 | -------------------------------------------------------------------------------- /src/GUI/trackinfo.h: -------------------------------------------------------------------------------- 1 | #ifndef TRACKINFO_H 2 | #define TRACKINFO_H 3 | 4 | #include 5 | 6 | class InfoItem; 7 | 8 | class TrackInfo : public QGraphicsScene 9 | { 10 | Q_OBJECT 11 | 12 | public: 13 | TrackInfo(QObject *parent = 0); 14 | 15 | void insert(const QString &key, const QString &value); 16 | void plot(QPainter *painter, const QRectF &target, qreal scale); 17 | bool isEmpty() const; 18 | QSizeF contentSize() const; 19 | 20 | private: 21 | InfoItem *_info; 22 | }; 23 | 24 | #endif // TRACKINFO_H 25 | -------------------------------------------------------------------------------- /src/GUI/trackitem.h: -------------------------------------------------------------------------------- 1 | #ifndef TRACKITEM_H 2 | #define TRACKITEM_H 3 | 4 | #include 5 | #include "pathitem.h" 6 | 7 | class Map; 8 | class Track; 9 | 10 | class TrackItem : public PathItem 11 | { 12 | Q_OBJECT 13 | 14 | public: 15 | TrackItem(const Track &track, Map *map, QGraphicsItem *parent = 0); 16 | 17 | ToolTip info(bool extended) const; 18 | 19 | private: 20 | qreal _time; 21 | qreal _movingTime; 22 | }; 23 | 24 | #endif // TRACKITEM_H 25 | -------------------------------------------------------------------------------- /src/common/color.h: -------------------------------------------------------------------------------- 1 | #ifndef COLOR_H 2 | #define COLOR_H 3 | 4 | #include 5 | 6 | namespace Color 7 | { 8 | inline QRgb bgr2rgb(quint32 bgr) 9 | { 10 | quint32 b = (bgr & 0x000000FF); 11 | quint32 g = (bgr & 0x0000FF00) >> 8; 12 | quint32 r = (bgr & 0x00FF0000) >> 16; 13 | 14 | return (0xFF000000 | r << 16 | g << 8 | b); 15 | } 16 | 17 | inline QRgb rgb(quint32 r, quint32 g, quint32 b) 18 | { 19 | return (0xFF000000 | r << 16 | g << 8 | b); 20 | } 21 | } 22 | 23 | #endif // COLOR_H 24 | -------------------------------------------------------------------------------- /src/common/config.h: -------------------------------------------------------------------------------- 1 | #ifndef CONFIG_H 2 | #define CONFIG_H 3 | 4 | #define APP_NAME "GPXSee" 5 | #define APP_HOMEPAGE "http://www.gpxsee.org" 6 | #define DEM_TILES_URL "http://dem.gpxsee.org/$lat/$lat$lon.hgt.zip" 7 | 8 | #endif /* CONFIG_H */ 9 | -------------------------------------------------------------------------------- /src/common/csv.h: -------------------------------------------------------------------------------- 1 | #ifndef CSV_H 2 | #define CSV_H 3 | 4 | #include 5 | 6 | class CSV 7 | { 8 | public: 9 | CSV(QIODevice *device, char delimiter = ',') 10 | : _device(device), _delimiter(delimiter), _line(1) {} 11 | 12 | bool readEntry(QByteArrayList &list, int limit = 4096); 13 | bool atEnd() const {return _device->atEnd();} 14 | int line() const {return _line;} 15 | 16 | private: 17 | QIODevice *_device; 18 | char _delimiter; 19 | int _line; 20 | }; 21 | 22 | #endif // CSV_H 23 | -------------------------------------------------------------------------------- /src/common/greatcircle.h: -------------------------------------------------------------------------------- 1 | #ifndef GREATCIRCLE_H 2 | #define GREATCIRCLE_H 3 | 4 | #include "coordinates.h" 5 | 6 | class GreatCircle 7 | { 8 | public: 9 | GreatCircle(const Coordinates &c1, const Coordinates &c2); 10 | 11 | Coordinates pointAt(double f) const; 12 | 13 | private: 14 | double _xA, _xB, _yA, _yB; 15 | double _d; 16 | double _sinD; 17 | double _sinLat1, _sinLat2; 18 | }; 19 | 20 | #endif // GREATCIRCLE_H 21 | -------------------------------------------------------------------------------- /src/common/hash.h: -------------------------------------------------------------------------------- 1 | #ifndef HASH_H 2 | #define HASH_H 3 | 4 | #include 5 | 6 | #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) 7 | #include 8 | #include 9 | #include 10 | 11 | #define HASH_T uint 12 | 13 | inline uint qHash(const QPoint &p) 14 | { 15 | return qHash(QPair(p.x(), p.y())); 16 | } 17 | #else // QT6 18 | #define HASH_T size_t 19 | #endif // QT6 20 | 21 | #endif // HASH_H 22 | -------------------------------------------------------------------------------- /src/common/programpaths.h: -------------------------------------------------------------------------------- 1 | #ifndef PROGRAMPATHS_H 2 | #define PROGRAMPATHS_H 3 | 4 | #include 5 | 6 | namespace ProgramPaths 7 | { 8 | QString mapDir(bool writable = false); 9 | QString poiDir(bool writable = false); 10 | QString crsDir(bool writable = false); 11 | QString demDir(bool writable = false); 12 | QString styleDir(bool writable = false); 13 | QString symbolsDir(bool writable = false); 14 | QString tilesDir(); 15 | QString translationsDir(); 16 | QString ellipsoidsFile(); 17 | QString gcsFile(); 18 | QString projectionsFile(); 19 | QString pcsFile(); 20 | QString typFile(); 21 | QString renderthemeFile(); 22 | } 23 | 24 | #endif // PROGRAMPATHS_H 25 | -------------------------------------------------------------------------------- /src/common/textcodec.h: -------------------------------------------------------------------------------- 1 | #ifndef TEXTCODEC_H 2 | #define TEXTCODEC_H 3 | 4 | #include 5 | #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) || defined(Q_OS_ANDROID) 6 | #include 7 | #else // QT 6 || ANDROID 8 | #include 9 | #endif // QT 6 || ANDROID 10 | 11 | class TextCodec 12 | { 13 | public: 14 | TextCodec(); 15 | TextCodec(int codepage); 16 | 17 | QString toString(const QByteArray &ba); 18 | 19 | private: 20 | #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) || defined(Q_OS_ANDROID) 21 | QTextCodec *_codec; 22 | #else // QT 6 || ANDROID 23 | QStringDecoder _decoder; 24 | #endif // QT 6 || ANDROID 25 | }; 26 | 27 | #endif // TEXTCODEC_H 28 | -------------------------------------------------------------------------------- /src/common/tifffile.cpp: -------------------------------------------------------------------------------- 1 | #include "tifffile.h" 2 | 3 | #define TIFF_II 0x4949 4 | #define TIFF_MM 0x4D4D 5 | #define TIFF_MAGIC 42 6 | 7 | TIFFFile::TIFFFile(QIODevice *device) : _device(device), _ifd(0), _offset(0) 8 | { 9 | quint16 endian, magic; 10 | 11 | _offset = _device->pos(); 12 | 13 | if (_device->read((char*)&endian, sizeof(endian)) < (qint64)sizeof(endian)) 14 | return; 15 | if (endian == TIFF_II) 16 | _be = false; 17 | else if (endian == TIFF_MM) 18 | _be = true; 19 | else 20 | return; 21 | 22 | if (!readValue(magic)) 23 | return; 24 | if (magic != TIFF_MAGIC) 25 | return; 26 | if (!readValue(_ifd)) 27 | return; 28 | } 29 | -------------------------------------------------------------------------------- /src/common/util.h: -------------------------------------------------------------------------------- 1 | #ifndef UTIL_H 2 | #define UTIL_H 3 | 4 | #include 5 | #include 6 | 7 | class QTemporaryDir; 8 | 9 | #define ARRAY_SIZE(array) \ 10 | (sizeof(array) / sizeof(array[0])) 11 | 12 | namespace Util 13 | { 14 | int log2i(unsigned val); 15 | int str2int(const char *str, int len); 16 | double niceNum(double x, bool round); 17 | QString file2name(const QString &path); 18 | QString displayName(const QString &path); 19 | const QTemporaryDir &tempDir(); 20 | bool isSQLiteDB(const QString &path, QString &errorString); 21 | QImage svg2img(const QString &path, qreal ratio); 22 | } 23 | 24 | #endif // UTIL_H 25 | -------------------------------------------------------------------------------- /src/common/wgs84.h: -------------------------------------------------------------------------------- 1 | #ifndef WGS84_H 2 | #define WGS84_H 3 | 4 | #define WGS84_RADIUS 6378137.0 5 | #define WGS84_FLATTENING (1.0/298.257223563) 6 | 7 | #endif // WGS84_H 8 | -------------------------------------------------------------------------------- /src/data/address.cpp: -------------------------------------------------------------------------------- 1 | #include "address.h" 2 | 3 | QString Address::address() const 4 | { 5 | QString addr(_street); 6 | 7 | if (addr.isEmpty()) 8 | addr = _city; 9 | else 10 | addr += "\n" + _city; 11 | if (!_postalCode.isEmpty()) 12 | addr += "\n" + _postalCode; 13 | if (!_state.isEmpty()) 14 | addr += "\n" + _state; 15 | if (!_country.isEmpty()) 16 | addr += "\n" + _country; 17 | 18 | return addr; 19 | } 20 | -------------------------------------------------------------------------------- /src/data/csvparser.h: -------------------------------------------------------------------------------- 1 | #ifndef CSVPARSER_H 2 | #define CSVPARSER_H 3 | 4 | #include "parser.h" 5 | 6 | class CSVParser : public Parser 7 | { 8 | public: 9 | CSVParser() : _errorLine(0) {} 10 | 11 | bool parse(QFile *file, QList &tracks, QList &routes, 12 | QList &polygons, QVector &waypoints); 13 | QString errorString() const {return _errorString;} 14 | int errorLine() const {return _errorLine;} 15 | 16 | private: 17 | QString _errorString; 18 | int _errorLine; 19 | }; 20 | 21 | #endif // CSVPARSER_H 22 | -------------------------------------------------------------------------------- /src/data/gpsdumpparser.h: -------------------------------------------------------------------------------- 1 | #ifndef GPSDUMPPARSER_H 2 | #define GPSDUMPPARSER_H 3 | 4 | #include "parser.h" 5 | 6 | class GPSDumpParser : public Parser 7 | { 8 | public: 9 | GPSDumpParser() : _errorLine(0) {} 10 | 11 | bool parse(QFile *file, QList &tracks, QList &routes, 12 | QList &polygons, QVector &waypoints); 13 | QString errorString() const {return _errorString;} 14 | int errorLine() const {return _errorLine;} 15 | 16 | private: 17 | enum Type { 18 | Unknown, 19 | GEO, 20 | UTM 21 | }; 22 | 23 | int _errorLine; 24 | QString _errorString; 25 | }; 26 | 27 | #endif // GPSDUMPPARSER_H 28 | -------------------------------------------------------------------------------- /src/data/itnparser.h: -------------------------------------------------------------------------------- 1 | #ifndef ITNPARSER_H 2 | #define ITNPARSER_H 3 | 4 | #include "parser.h" 5 | 6 | class ITNParser : public Parser 7 | { 8 | public: 9 | ITNParser() : _errorLine(0) {} 10 | 11 | bool parse(QFile *file, QList &tracks, QList &routes, 12 | QList &polygons, QVector &waypoints); 13 | QString errorString() const {return _errorString;} 14 | int errorLine() const {return _errorLine;} 15 | 16 | private: 17 | QString _errorString; 18 | int _errorLine; 19 | }; 20 | 21 | #endif // ITNPARSER_H 22 | -------------------------------------------------------------------------------- /src/data/link.h: -------------------------------------------------------------------------------- 1 | #ifndef LINK_H 2 | #define LINK_H 3 | 4 | #include 5 | 6 | class Link { 7 | public: 8 | Link() {} 9 | Link(const QString &URL, const QString &text = QString()) 10 | : _url(URL), _text(text) {} 11 | 12 | void setURL(const QString &URL) {_url = URL;} 13 | void setText(const QString &text) {_text = text;} 14 | const QString &URL() const {return _url;} 15 | const QString &text() const {return _text;} 16 | 17 | private: 18 | QString _url; 19 | QString _text; 20 | }; 21 | 22 | #endif // LINK_H 23 | -------------------------------------------------------------------------------- /src/data/locparser.h: -------------------------------------------------------------------------------- 1 | #ifndef LOCPARSER_H 2 | #define LOCPARSER_H 3 | 4 | #include 5 | #include "parser.h" 6 | 7 | class LOCParser : public Parser 8 | { 9 | public: 10 | bool parse(QFile *file, QList &tracks, QList &routes, 11 | QList &polygons, QVector &waypoints); 12 | QString errorString() const {return _reader.errorString();} 13 | int errorLine() const {return _reader.lineNumber();} 14 | 15 | private: 16 | void loc(QVector &waypoints); 17 | void waypoint(Waypoint &waypoint); 18 | Coordinates coordinates(); 19 | 20 | QXmlStreamReader _reader; 21 | }; 22 | 23 | #endif // LOCPARSER_H 24 | -------------------------------------------------------------------------------- /src/data/ov2parser.h: -------------------------------------------------------------------------------- 1 | #ifndef OV2PARSER_H 2 | #define OV2PARSER_H 3 | 4 | #include "parser.h" 5 | 6 | class OV2Parser : public Parser 7 | { 8 | bool parse(QFile *file, QList &tracks, QList &routes, 9 | QList &polygons, QVector &waypoints); 10 | QString errorString() const {return _errorString;} 11 | int errorLine() const {return 0;} 12 | 13 | private: 14 | QString _errorString; 15 | }; 16 | 17 | #endif // OV2PARSER_H 18 | -------------------------------------------------------------------------------- /src/data/parser.h: -------------------------------------------------------------------------------- 1 | #ifndef PARSER_H 2 | #define PARSER_H 3 | 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include "trackdata.h" 9 | #include "routedata.h" 10 | #include "waypoint.h" 11 | #include "area.h" 12 | 13 | 14 | class Parser 15 | { 16 | public: 17 | virtual ~Parser() {} 18 | 19 | virtual bool parse(QFile *file, QList &tracks, 20 | QList &routes, QList &polygons, 21 | QVector &waypoints) = 0; 22 | virtual QString errorString() const = 0; 23 | virtual int errorLine() const = 0; 24 | }; 25 | 26 | #endif // PARSER_H 27 | -------------------------------------------------------------------------------- /src/data/twonavparser.h: -------------------------------------------------------------------------------- 1 | #ifndef TWONAVPARSER_H 2 | #define TWONAVPARSER_H 3 | 4 | #include "parser.h" 5 | 6 | class TwoNavParser : public Parser 7 | { 8 | public: 9 | TwoNavParser() : _errorLine(0) {} 10 | 11 | bool parse(QFile *file, QList &tracks, QList &routes, 12 | QList &polygons, QVector &waypoints); 13 | QString errorString() const {return _errorString;} 14 | int errorLine() const {return _errorLine;} 15 | 16 | private: 17 | QString _errorString; 18 | int _errorLine; 19 | }; 20 | 21 | #endif // TWONAVPARSER_H 22 | -------------------------------------------------------------------------------- /src/data/txtparser.h: -------------------------------------------------------------------------------- 1 | #ifndef TXTPARSER_H 2 | #define TXTPARSER_H 3 | 4 | #include "parser.h" 5 | 6 | class TXTParser : public Parser 7 | { 8 | bool parse(QFile *file, QList &tracks, QList &routes, 9 | QList &polygons, QVector &waypoints); 10 | QString errorString() const {return _errorString;} 11 | int errorLine() const {return _errorLine;} 12 | 13 | private: 14 | QString _errorString; 15 | int _errorLine; 16 | }; 17 | 18 | #endif // TXTPARSER_H 19 | -------------------------------------------------------------------------------- /src/data/vkxparser.h: -------------------------------------------------------------------------------- 1 | #ifndef VKXPARSER_H 2 | #define VKXPARSER_H 3 | 4 | #include "parser.h" 5 | 6 | class QDataStream; 7 | 8 | class VKXParser : public Parser 9 | { 10 | public: 11 | VKXParser() 12 | { 13 | static_assert(sizeof(float) == 4, "Invalid float size"); 14 | } 15 | 16 | bool parse(QFile *file, QList &tracks, QList &routes, 17 | QList &polygons, QVector &waypoints); 18 | QString errorString() const {return _errorString;} 19 | int errorLine() const {return 0;} 20 | 21 | private: 22 | bool skip(QDataStream &stream, quint8 key, int len); 23 | 24 | QString _errorString; 25 | }; 26 | 27 | #endif // VKXPARSER_H 28 | -------------------------------------------------------------------------------- /src/data/vtkparser.h: -------------------------------------------------------------------------------- 1 | #ifndef VTKPARSER_H 2 | #define VTKPARSER_H 3 | 4 | #include "parser.h" 5 | 6 | class VTKParser : public Parser 7 | { 8 | public: 9 | bool parse(QFile *file, QList &tracks, QList &routes, 10 | QList &polygons, QVector &waypoints); 11 | QString errorString() const {return _errorString;} 12 | int errorLine() const {return 0;} 13 | 14 | private: 15 | QString _errorString; 16 | }; 17 | 18 | #endif // VTKPARSER_H 19 | -------------------------------------------------------------------------------- /src/map/IMG/gmapdata.h: -------------------------------------------------------------------------------- 1 | #ifndef IMG_GMAP_H 2 | #define IMG_GMAP_H 3 | 4 | #include "mapdata.h" 5 | 6 | class QXmlStreamReader; 7 | class QDir; 8 | 9 | namespace IMG { 10 | 11 | class GMAPData : public MapData 12 | { 13 | public: 14 | GMAPData(const QString &fileName); 15 | 16 | private: 17 | bool readXML(const QString &path, QString &dataDir, QString &typFile); 18 | void mapProduct(QXmlStreamReader &reader, QString &dataDir, 19 | QString &typFile); 20 | void subProduct(QXmlStreamReader &reader, QString &dataDir); 21 | bool loadTile(const QDir &dir); 22 | }; 23 | 24 | } 25 | 26 | #endif // IMG_GMAP_H 27 | -------------------------------------------------------------------------------- /src/map/IMG/huffmanbuffer.cpp: -------------------------------------------------------------------------------- 1 | #include "rgnfile.h" 2 | #include "huffmanbuffer.h" 3 | 4 | using namespace IMG; 5 | 6 | bool HuffmanBuffer::load(const RGNFile *rgn, SubFile::Handle &rgnHdl) 7 | { 8 | quint32 recordSize, recordOffset = rgn->dict().offset; 9 | 10 | for (int i = 0; i <= _id; i++) { 11 | if (!rgn->seek(rgnHdl, recordOffset)) 12 | return false; 13 | if (!rgn->readVUInt32(rgnHdl, recordSize)) 14 | return false; 15 | recordOffset = rgn->pos(rgnHdl) + recordSize; 16 | if (recordOffset > rgn->dict().offset + rgn->dict().size) 17 | return false; 18 | }; 19 | 20 | resize(recordSize); 21 | return rgn->read(rgnHdl, data(), recordSize); 22 | } 23 | -------------------------------------------------------------------------------- /src/map/IMG/huffmanbuffer.h: -------------------------------------------------------------------------------- 1 | #ifndef IMG_HUFFMANBUFFER_H 2 | #define IMG_HUFFMANBUFFER_H 3 | 4 | #include 5 | #include "subfile.h" 6 | 7 | namespace IMG { 8 | 9 | class RGNFile; 10 | 11 | class HuffmanBuffer : public QByteArray 12 | { 13 | public: 14 | HuffmanBuffer(quint8 id) : _id(id) {} 15 | 16 | quint8 id() const {return _id;} 17 | bool load(const RGNFile *rgn, SubFile::Handle &rgnHdl); 18 | 19 | private: 20 | quint8 _id; 21 | }; 22 | 23 | } 24 | 25 | #endif // IMG_HUFFMANBUFFER_H 26 | -------------------------------------------------------------------------------- /src/map/IMG/huffmantext.h: -------------------------------------------------------------------------------- 1 | #ifndef IMG_HUFFMANTEXT_H 2 | #define IMG_HUFFMANTEXT_H 3 | 4 | #include "huffmantable.h" 5 | 6 | namespace IMG { 7 | 8 | class HuffmanText 9 | { 10 | public: 11 | HuffmanText() : _table(0) {} 12 | 13 | bool load(const RGNFile *rgn, SubFile::Handle &rgnHdl); 14 | bool decode(const SubFile *file, SubFile::Handle &hdl, quint32 size, 15 | QVector &str) const; 16 | 17 | private: 18 | HuffmanTable _table; 19 | }; 20 | 21 | } 22 | 23 | #endif // IMG_HUFFMANTEXT_H 24 | -------------------------------------------------------------------------------- /src/map/IMG/section.h: -------------------------------------------------------------------------------- 1 | #ifndef IMG_SECTION_H 2 | #define IMG_SECTION_H 3 | 4 | #include 5 | 6 | namespace IMG { 7 | 8 | struct Section { 9 | quint32 offset; 10 | quint32 size; 11 | 12 | Section() : offset(0), size(0) {} 13 | }; 14 | 15 | } 16 | 17 | #endif // IMG_SECTION_H 18 | -------------------------------------------------------------------------------- /src/map/bitmapline.h: -------------------------------------------------------------------------------- 1 | #ifndef BITMAPLINE_H 2 | #define BITMAPLINE_H 3 | 4 | #include 5 | 6 | class QPainter; 7 | class QImage; 8 | class QPolygonF; 9 | class QPainterPath; 10 | 11 | namespace BitmapLine 12 | { 13 | void draw(QPainter *painter, const QPolygonF &line, const QImage &img); 14 | void drawR(QPainter *painter, const QPolygonF &line, const QImage &img); 15 | void draw(QPainter *painter, const QVector &lines, 16 | const QImage &img); 17 | void draw(QPainter *painter, const QPainterPath &line, const QImage &img); 18 | } 19 | 20 | #endif // BITMAPLINE_H 21 | -------------------------------------------------------------------------------- /src/map/crs.h: -------------------------------------------------------------------------------- 1 | #ifndef CRS_H 2 | #define CRS_H 3 | 4 | #include "projection.h" 5 | 6 | namespace CRS 7 | { 8 | Projection projection(const QString &crs); 9 | Projection projection(int id); 10 | Projection projection(int gcsId, int projId); 11 | } 12 | 13 | #endif // CRS_H 14 | -------------------------------------------------------------------------------- /src/map/ct.h: -------------------------------------------------------------------------------- 1 | #ifndef CT_H 2 | #define CT_H 3 | 4 | #include "common/coordinates.h" 5 | #include "pointd.h" 6 | 7 | class CT { 8 | public: 9 | virtual ~CT() {} 10 | 11 | virtual CT *clone() const = 0; 12 | virtual bool operator==(const CT &ct) const = 0; 13 | 14 | virtual PointD ll2xy(const Coordinates &c) const = 0; 15 | virtual Coordinates xy2ll(const PointD &p) const = 0; 16 | }; 17 | 18 | #endif // CT_H 19 | -------------------------------------------------------------------------------- /src/map/filter.h: -------------------------------------------------------------------------------- 1 | #ifndef FILTER_H 2 | #define FILTER_H 3 | 4 | #include "matrix.h" 5 | 6 | namespace Filter 7 | { 8 | MatrixD blur(const MatrixD &m, int radius); 9 | } 10 | 11 | #endif // FILTER_H 12 | -------------------------------------------------------------------------------- /src/map/image.h: -------------------------------------------------------------------------------- 1 | #ifndef IMAGE_H 2 | #define IMAGE_H 3 | 4 | #include 5 | #include "map.h" 6 | 7 | class QPainter; 8 | 9 | class Image 10 | { 11 | public: 12 | Image(const QString &fileName) : _img(fileName) {} 13 | Image(const QImage &img) : _img(img) {} 14 | 15 | void draw(QPainter *painter, const QRectF &rect, Map::Flags flags); 16 | void setDevicePixelRatio(qreal ratio); 17 | 18 | private: 19 | QImage _img; 20 | }; 21 | 22 | #endif // IMAGE_H 23 | -------------------------------------------------------------------------------- /src/map/metatype.h: -------------------------------------------------------------------------------- 1 | #ifndef METATYPE_H 2 | #define METATYPE_H 3 | 4 | #include 5 | 6 | static inline QMetaType::Type METATYPE(const QSqlField &f) 7 | { 8 | #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) 9 | return static_cast(f.type()); 10 | #else // QT 6 11 | return static_cast(f.metaType().id()); 12 | #endif // QT 6 13 | } 14 | 15 | #endif // METATYPE_H 16 | -------------------------------------------------------------------------------- /src/map/proj/webmercator.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include "common/coordinates.h" 3 | #include "common/wgs84.h" 4 | #include "webmercator.h" 5 | 6 | PointD WebMercator::ll2xy(const Coordinates &c) const 7 | { 8 | return PointD(deg2rad(c.lon()) * WGS84_RADIUS, 9 | log(tan(M_PI_4 + deg2rad(c.lat())/2.0)) * WGS84_RADIUS); 10 | } 11 | 12 | Coordinates WebMercator::xy2ll(const PointD &p) const 13 | { 14 | return Coordinates(rad2deg(p.x() / WGS84_RADIUS), 15 | rad2deg(2.0 * atan(exp(p.y() / WGS84_RADIUS)) - M_PI_2)); 16 | } 17 | 18 | bool WebMercator::operator==(const CT &ct) const 19 | { 20 | const WebMercator *other = dynamic_cast(&ct); 21 | return (other != 0); 22 | } 23 | -------------------------------------------------------------------------------- /src/map/proj/webmercator.h: -------------------------------------------------------------------------------- 1 | #ifndef WEBMERCATOR_H 2 | #define WEBMERCATOR_H 3 | 4 | #include "map/ct.h" 5 | 6 | class WebMercator : public CT 7 | { 8 | public: 9 | virtual CT *clone() const {return new WebMercator(*this);} 10 | virtual bool operator==(const CT &ct) const; 11 | 12 | virtual PointD ll2xy(const Coordinates &c) const; 13 | virtual Coordinates xy2ll(const PointD &p) const; 14 | }; 15 | 16 | #endif // WEBMERCATOR_H 17 | -------------------------------------------------------------------------------- /src/map/textitem.cpp: -------------------------------------------------------------------------------- 1 | #include "textitem.h" 2 | 3 | bool TextItem::collides(const QList &list) const 4 | { 5 | QRectF r1(boundingRect()); 6 | 7 | for (int i = 0; i < list.size(); i++) { 8 | const TextItem* other = list.at(i); 9 | QRectF r2(other->boundingRect()); 10 | 11 | if (!(r1.isEmpty() || r2.isEmpty() || !r1.intersects(r2))) 12 | if (other->shape().intersects(shape())) 13 | return true; 14 | } 15 | 16 | return false; 17 | } 18 | -------------------------------------------------------------------------------- /src/map/textitem.h: -------------------------------------------------------------------------------- 1 | #ifndef TEXTITEM_H 2 | #define TEXTITEM_H 3 | 4 | #include 5 | #include 6 | #include 7 | 8 | class QPainter; 9 | 10 | class TextItem 11 | { 12 | public: 13 | TextItem(const QString *text) : _text(text) {} 14 | virtual ~TextItem() {} 15 | 16 | virtual QPainterPath shape() const = 0; 17 | virtual QRectF boundingRect() const = 0; 18 | virtual void paint(QPainter *painter) const = 0; 19 | 20 | const QString *text() const {return _text;} 21 | bool collides(const QList &list) const; 22 | 23 | protected: 24 | const QString *_text; 25 | }; 26 | 27 | #endif // TEXTITEM_H 28 | -------------------------------------------------------------------------------- /src/map/utm.h: -------------------------------------------------------------------------------- 1 | #ifndef UTM_H 2 | #define UTM_H 3 | 4 | #include "conversion.h" 5 | 6 | class Coordinates; 7 | 8 | namespace UTM 9 | { 10 | int zone(const Coordinates &c); 11 | Conversion::Setup setup(int zone); 12 | } 13 | 14 | #endif // UTM_H 15 | -------------------------------------------------------------------------------- /src/map/wldfile.h: -------------------------------------------------------------------------------- 1 | #ifndef WLDFILE_H 2 | #define WLDFILE_H 3 | 4 | #include "transform.h" 5 | 6 | class WLDFile 7 | { 8 | public: 9 | WLDFile(const QString &fileName); 10 | 11 | const Transform &transform() const {return _transform;} 12 | const QString &errorString() const {return _errorString;} 13 | 14 | private: 15 | Transform _transform; 16 | QString _errorString; 17 | }; 18 | 19 | #endif // WLDFILE_H 20 | --------------------------------------------------------------------------------