Compare commits
99 Commits
Author | SHA1 | Date | |
---|---|---|---|
5533f1e004 | |||
4e961f7518 | |||
051f3fec58 | |||
9cd3f3c4a3 | |||
2a00b4dd6d | |||
7d9e2585bc | |||
67aaf4d232 | |||
93bcbee75f | |||
dc3a7b4669 | |||
db2db4749c | |||
a0c14a5ed0 | |||
c1041b3690 | |||
81d0c6e881 | |||
c6b8511701 | |||
8d5aa6361f | |||
7a91e95994 | |||
57a5d4edf5 | |||
467e210581 | |||
60632bd78c | |||
39f475516b | |||
9779d91d31 | |||
cd0243524e | |||
af1bdaa822 | |||
de474303f5 | |||
4bc1e85502 | |||
4ab70a0658 | |||
9096797938 | |||
2b779f6835 | |||
0a627feab4 | |||
eb7220f0c8 | |||
13a17604e9 | |||
1430b9bab1 | |||
010e630b3b | |||
1c418e3732 | |||
c56ebccd5c | |||
226de1320c | |||
fb8f0c4372 | |||
5fdbf2e5d6 | |||
93c81c01c3 | |||
3cfa5456e9 | |||
06dac47550 | |||
e4c2d6a20a | |||
c364922625 | |||
4cd55068a2 | |||
3338bfa73f | |||
e1d4c2b532 | |||
b14dd23224 | |||
288aa195c0 | |||
8d92cf6d86 | |||
29705b4cdf | |||
54db2a5a6c | |||
3d4adba90a | |||
505d7271f1 | |||
3c2b293deb | |||
10cc36414a | |||
2d5cf5478a | |||
fd47d2da05 | |||
ce5a924e8f | |||
8a0cd4f246 | |||
b67b8c2ba7 | |||
a7c508dd93 | |||
8511dd9101 | |||
2a7507ff25 | |||
134129e798 | |||
a8c10226eb | |||
8c470ccabd | |||
a22011ba99 | |||
5fed1612bd | |||
9cf4d8af6c | |||
6358fa703b | |||
72672404e7 | |||
348a9b120f | |||
b7343b1535 | |||
0a57fa9fff | |||
9f98220d67 | |||
446a68abcb | |||
43738523a6 | |||
ac0a75b5f2 | |||
c9ec1e8b52 | |||
24f7201fc7 | |||
70ee59d0e1 | |||
91bc1f4546 | |||
28a71cbc39 | |||
8e2ff85aaa | |||
c5212129ab | |||
8fea000adf | |||
34d57270de | |||
7920f0f245 | |||
c43b4060ca | |||
c77cf70f9f | |||
db45d3c659 | |||
45dbb105c5 | |||
d7dc185ecf | |||
e47cbc9af3 | |||
f5078074cf | |||
11c83b405f | |||
499461ff76 | |||
fd65882907 | |||
d0dc3661e4 |
@ -1,4 +1,4 @@
|
||||
version: 9.6.{build}
|
||||
version: 9.8.{build}
|
||||
|
||||
configuration:
|
||||
- Release
|
||||
@ -48,6 +48,7 @@ build_script:
|
||||
xcopy pkg\csv installer\csv /i
|
||||
xcopy pkg\maps installer\maps /i
|
||||
xcopy lang\*.qm installer\translations\ /sy
|
||||
xcopy icons\symbols installer\symbols /i
|
||||
copy licence.txt installer
|
||||
copy %OPENSSLDIR%\%LIBCRYPTO% installer
|
||||
copy %OPENSSLDIR%\%LIBSSL% installer
|
||||
|
@ -48,11 +48,12 @@ GPXSee uses [Weblate](https://hosted.weblate.org/projects/gpxsee/translations/)
|
||||
GPXSee is licensed under GPL-3.0 (only). However, some 3rd party parts are using different, GPL compatible,
|
||||
licenses:
|
||||
* [Oxygen icons](icons/GUI) - LGPLv3
|
||||
* [Mapbox Maki icons](icons/POI) - CC0
|
||||
* [Mapbox Maki icons](icons/IMG) - CC0
|
||||
* [Map Icons Collection](icons/symbols) - CC BY SA 3.0
|
||||
* [RTree implementation](src/common/rtree.h) - Public domain
|
||||
* [Albers](src/map/albersequal.cpp), [Geocentric](src/map/geocentric.cpp), [LCC](src/map/lambertconic.cpp),
|
||||
[Mercator](src/map/mercator.cpp), [Polar Stereographic](src/map/polarstereographic.cpp),
|
||||
[Polyconic](src/map/polyconic.cpp) and [Transverse Mercator](src/map/transversemercator.cpp)
|
||||
* [Albers](src/map/proj/albersequal.cpp), [Geocentric](src/map/geocentric.cpp), [LCC](src/map/proj/lambertconic.cpp),
|
||||
[Mercator](src/map/proj/mercator.cpp), [Polar Stereographic](src/map/proj/polarstereographic.cpp),
|
||||
[Polyconic](src/map/proj/polyconic.cpp) and [Transverse Mercator](src/map/proj/transversemercator.cpp)
|
||||
projections - NIMA Source Code Disclaimer
|
||||
* [Projection parameters CSV files](pkg/csv) - BSD/EPSG/Public domain
|
||||
* [Mapsforge render theme](data/default.xml) and its [icons](icons/mapsforge) - LGPLv3
|
||||
|
284
gpxsee.pro
@ -3,7 +3,7 @@ unix:!macx {
|
||||
} else {
|
||||
TARGET = GPXSee
|
||||
}
|
||||
VERSION = 9.6
|
||||
VERSION = 9.8
|
||||
|
||||
QT += core \
|
||||
gui \
|
||||
@ -18,20 +18,6 @@ greaterThan(QT_MAJOR_VERSION, 5) {QT += openglwidgets}
|
||||
CONFIG += object_parallel_to_source
|
||||
INCLUDEPATH += ./src
|
||||
HEADERS += src/common/config.h \
|
||||
src/GUI/authenticationwidget.h \
|
||||
src/GUI/axislabelitem.h \
|
||||
src/GUI/dirselectwidget.h \
|
||||
src/GUI/flowlayout.h \
|
||||
src/GUI/graphicsscene.h \
|
||||
src/GUI/infolabel.h \
|
||||
src/GUI/mapaction.h \
|
||||
src/GUI/mapitem.h \
|
||||
src/GUI/marginswidget.h \
|
||||
src/GUI/markerinfoitem.h \
|
||||
src/GUI/planeitem.h \
|
||||
src/GUI/poiaction.h \
|
||||
src/GUI/popup.h \
|
||||
src/GUI/thumbnail.h \
|
||||
src/common/garmin.h \
|
||||
src/common/coordinates.h \
|
||||
src/common/range.h \
|
||||
@ -46,6 +32,22 @@ HEADERS += src/common/config.h \
|
||||
src/common/programpaths.h \
|
||||
src/common/tifffile.h \
|
||||
src/common/downloader.h \
|
||||
src/common/polygon.h \
|
||||
src/common/color.h \
|
||||
src/GUI/authenticationwidget.h \
|
||||
src/GUI/axislabelitem.h \
|
||||
src/GUI/dirselectwidget.h \
|
||||
src/GUI/flowlayout.h \
|
||||
src/GUI/graphicsscene.h \
|
||||
src/GUI/infolabel.h \
|
||||
src/GUI/mapaction.h \
|
||||
src/GUI/mapitem.h \
|
||||
src/GUI/marginswidget.h \
|
||||
src/GUI/markerinfoitem.h \
|
||||
src/GUI/planeitem.h \
|
||||
src/GUI/poiaction.h \
|
||||
src/GUI/popup.h \
|
||||
src/GUI/thumbnail.h \
|
||||
src/GUI/app.h \
|
||||
src/GUI/icons.h \
|
||||
src/GUI/gui.h \
|
||||
@ -96,10 +98,24 @@ HEADERS += src/common/config.h \
|
||||
src/GUI/mapview.h \
|
||||
src/GUI/font.h \
|
||||
src/GUI/areaitem.h \
|
||||
src/data/itnparser.h \
|
||||
src/data/link.h \
|
||||
src/data/onmoveparsers.h \
|
||||
src/data/ov2parser.h \
|
||||
src/GUI/coordinatesitem.h \
|
||||
src/GUI/projectioncombobox.h \
|
||||
src/GUI/pathtickitem.h \
|
||||
src/GUI/pdfexportdialog.h \
|
||||
src/GUI/pngexportdialog.h \
|
||||
src/GUI/timezoneinfo.h \
|
||||
src/GUI/passwordedit.h \
|
||||
src/map/proj/polyconic.h \
|
||||
src/map/proj/webmercator.h \
|
||||
src/map/proj/transversemercator.h \
|
||||
src/map/proj/latlon.h \
|
||||
src/map/proj/lambertconic.h \
|
||||
src/map/proj/lambertazimuthal.h \
|
||||
src/map/proj/albersequal.h \
|
||||
src/map/proj/mercator.h \
|
||||
src/map/proj/krovak.h \
|
||||
src/map/proj/polarstereographic.h \
|
||||
src/map/proj/obliquestereographic.h \
|
||||
src/map/IMG/bitmapline.h \
|
||||
src/map/IMG/bitstream.h \
|
||||
src/map/IMG/deltastream.h \
|
||||
@ -113,28 +129,31 @@ HEADERS += src/common/config.h \
|
||||
src/map/IMG/raster.h \
|
||||
src/map/IMG/rastertile.h \
|
||||
src/map/IMG/shield.h \
|
||||
src/map/IMG/imgdata.h \
|
||||
src/map/IMG/subfile.h \
|
||||
src/map/IMG/trefile.h \
|
||||
src/map/IMG/rgnfile.h \
|
||||
src/map/IMG/lblfile.h \
|
||||
src/map/IMG/vectortile.h \
|
||||
src/map/IMG/subdiv.h \
|
||||
src/map/IMG/style.h \
|
||||
src/map/IMG/netfile.h \
|
||||
src/map/IMG/label.h \
|
||||
src/map/mapsforge/style.h \
|
||||
src/map/prjfile.h \
|
||||
src/map/textpathitem.h \
|
||||
src/map/textpointitem.h \
|
||||
src/map/mapsforge/mapdata.h \
|
||||
src/map/mapsforge/rastertile.h \
|
||||
src/map/mapsforge/subfile.h \
|
||||
src/map/textpathitem.h \
|
||||
src/map/textpointitem.h \
|
||||
src/map/prjfile.h \
|
||||
src/map/bsbmap.h \
|
||||
src/map/invalidmap.h \
|
||||
src/map/kmzmap.h \
|
||||
src/map/polyconic.h \
|
||||
src/map/projection.h \
|
||||
src/map/ellipsoid.h \
|
||||
src/map/datum.h \
|
||||
src/map/sqlitemap.h \
|
||||
src/map/webmercator.h \
|
||||
src/map/transversemercator.h \
|
||||
src/map/latlon.h \
|
||||
src/map/utm.h \
|
||||
src/map/lambertconic.h \
|
||||
src/map/lambertazimuthal.h \
|
||||
src/map/albersequal.h \
|
||||
src/map/map.h \
|
||||
src/map/maplist.h \
|
||||
src/map/onlinemap.h \
|
||||
@ -166,14 +185,22 @@ HEADERS += src/common/config.h \
|
||||
src/map/pointd.h \
|
||||
src/map/rectd.h \
|
||||
src/map/geocentric.h \
|
||||
src/map/mercator.h \
|
||||
src/map/jnxmap.h \
|
||||
src/map/krovak.h \
|
||||
src/map/geotiffmap.h \
|
||||
src/map/image.h \
|
||||
src/map/mbtilesmap.h \
|
||||
src/map/osm.h \
|
||||
src/map/polarstereographic.h \
|
||||
src/map/rmap.h \
|
||||
src/map/calibrationpoint.h \
|
||||
src/map/textitem.h \
|
||||
src/map/aqmmap.h \
|
||||
src/map/mapsforgemap.h \
|
||||
src/map/worldfilemap.h \
|
||||
src/map/imgmap.h \
|
||||
src/data/itnparser.h \
|
||||
src/data/link.h \
|
||||
src/data/onmoveparsers.h \
|
||||
src/data/ov2parser.h \
|
||||
src/data/graph.h \
|
||||
src/data/poi.h \
|
||||
src/data/waypoint.h \
|
||||
@ -197,43 +224,25 @@ HEADERS += src/common/config.h \
|
||||
src/data/slfparser.h \
|
||||
src/data/dem.h \
|
||||
src/data/demloader.h \
|
||||
src/common/polygon.h \
|
||||
src/data/area.h \
|
||||
src/map/obliquestereographic.h \
|
||||
src/GUI/coordinatesitem.h \
|
||||
src/map/rmap.h \
|
||||
src/map/calibrationpoint.h \
|
||||
src/map/color.h \
|
||||
src/data/exifparser.h \
|
||||
src/data/imageinfo.h \
|
||||
src/map/imgmap.h \
|
||||
src/map/IMG/imgdata.h \
|
||||
src/map/IMG/subfile.h \
|
||||
src/map/IMG/trefile.h \
|
||||
src/map/IMG/rgnfile.h \
|
||||
src/map/IMG/lblfile.h \
|
||||
src/map/IMG/vectortile.h \
|
||||
src/map/IMG/subdiv.h \
|
||||
src/map/IMG/style.h \
|
||||
src/map/IMG/netfile.h \
|
||||
src/GUI/projectioncombobox.h \
|
||||
src/GUI/pathtickitem.h \
|
||||
src/map/textitem.h \
|
||||
src/map/IMG/label.h \
|
||||
src/data/csv.h \
|
||||
src/data/cupparser.h \
|
||||
src/data/gpiparser.h \
|
||||
src/data/address.h \
|
||||
src/data/smlparser.h \
|
||||
src/GUI/pdfexportdialog.h \
|
||||
src/GUI/pngexportdialog.h \
|
||||
src/data/geojsonparser.h \
|
||||
src/GUI/timezoneinfo.h \
|
||||
src/map/aqmmap.h \
|
||||
src/map/mapsforgemap.h \
|
||||
src/map/worldfilemap.h
|
||||
src/data/geojsonparser.h
|
||||
|
||||
SOURCES += src/main.cpp \
|
||||
src/common/coordinates.cpp \
|
||||
src/common/rectc.cpp \
|
||||
src/common/range.cpp \
|
||||
src/common/textcodec.cpp \
|
||||
src/common/util.cpp \
|
||||
src/common/greatcircle.cpp \
|
||||
src/common/programpaths.cpp \
|
||||
src/common/tifffile.cpp \
|
||||
src/common/downloader.cpp \
|
||||
src/GUI/authenticationwidget.cpp \
|
||||
src/GUI/axislabelitem.cpp \
|
||||
src/GUI/dirselectwidget.cpp \
|
||||
@ -244,15 +253,6 @@ SOURCES += src/main.cpp \
|
||||
src/GUI/markerinfoitem.cpp \
|
||||
src/GUI/popup.cpp \
|
||||
src/GUI/thumbnail.cpp \
|
||||
src/common/coordinates.cpp \
|
||||
src/common/rectc.cpp \
|
||||
src/common/range.cpp \
|
||||
src/common/textcodec.cpp \
|
||||
src/common/util.cpp \
|
||||
src/common/greatcircle.cpp \
|
||||
src/common/programpaths.cpp \
|
||||
src/common/tifffile.cpp \
|
||||
src/common/downloader.cpp \
|
||||
src/GUI/app.cpp \
|
||||
src/GUI/gui.cpp \
|
||||
src/GUI/axisitem.cpp \
|
||||
@ -294,11 +294,23 @@ SOURCES += src/main.cpp \
|
||||
src/GUI/gearratiographitem.cpp \
|
||||
src/GUI/mapview.cpp \
|
||||
src/GUI/areaitem.cpp \
|
||||
src/data/address.cpp \
|
||||
src/data/itnparser.cpp \
|
||||
src/data/onmoveparsers.cpp \
|
||||
src/data/ov2parser.cpp \
|
||||
src/data/waypoint.cpp \
|
||||
src/GUI/coordinatesitem.cpp \
|
||||
src/GUI/pathtickitem.cpp \
|
||||
src/GUI/graphicsscene.cpp \
|
||||
src/GUI/pdfexportdialog.cpp \
|
||||
src/GUI/pngexportdialog.cpp \
|
||||
src/GUI/projectioncombobox.cpp \
|
||||
src/GUI/passwordedit.cpp \
|
||||
src/map/proj/polyconic.cpp \
|
||||
src/map/proj/webmercator.cpp \
|
||||
src/map/proj/transversemercator.cpp \
|
||||
src/map/proj/lambertconic.cpp \
|
||||
src/map/proj/albersequal.cpp \
|
||||
src/map/proj/lambertazimuthal.cpp \
|
||||
src/map/proj/mercator.cpp \
|
||||
src/map/proj/krovak.cpp \
|
||||
src/map/proj/polarstereographic.cpp \
|
||||
src/map/proj/obliquestereographic.cpp \
|
||||
src/map/IMG/bitmapline.cpp \
|
||||
src/map/IMG/bitstream.cpp \
|
||||
src/map/IMG/deltastream.cpp \
|
||||
@ -310,20 +322,28 @@ SOURCES += src/main.cpp \
|
||||
src/map/IMG/nodfile.cpp \
|
||||
src/map/IMG/mapdata.cpp \
|
||||
src/map/IMG/rastertile.cpp \
|
||||
src/map/IMG/imgdata.cpp \
|
||||
src/map/IMG/subfile.cpp \
|
||||
src/map/IMG/trefile.cpp \
|
||||
src/map/IMG/rgnfile.cpp \
|
||||
src/map/IMG/lblfile.cpp \
|
||||
src/map/IMG/vectortile.cpp \
|
||||
src/map/IMG/style.cpp \
|
||||
src/map/IMG/netfile.cpp \
|
||||
src/map/mapsforge/style.cpp \
|
||||
src/map/prjfile.cpp \
|
||||
src/map/textpathitem.cpp \
|
||||
src/map/textpointitem.cpp \
|
||||
src/map/mapsforge/mapdata.cpp \
|
||||
src/map/mapsforge/rastertile.cpp \
|
||||
src/map/mapsforge/subfile.cpp \
|
||||
src/map/imgmap.cpp \
|
||||
src/map/prjfile.cpp \
|
||||
src/map/textpathitem.cpp \
|
||||
src/map/textpointitem.cpp \
|
||||
src/map/bsbmap.cpp \
|
||||
src/map/kmzmap.cpp \
|
||||
src/map/maplist.cpp \
|
||||
src/map/onlinemap.cpp \
|
||||
src/map/emptymap.cpp \
|
||||
src/map/ozimap.cpp \
|
||||
src/map/polyconic.cpp \
|
||||
src/map/sqlitemap.cpp \
|
||||
src/map/tar.cpp \
|
||||
src/map/atlas.cpp \
|
||||
@ -331,12 +351,7 @@ SOURCES += src/main.cpp \
|
||||
src/map/matrix.cpp \
|
||||
src/map/ellipsoid.cpp \
|
||||
src/map/datum.cpp \
|
||||
src/map/webmercator.cpp \
|
||||
src/map/transversemercator.cpp \
|
||||
src/map/utm.cpp \
|
||||
src/map/lambertconic.cpp \
|
||||
src/map/albersequal.cpp \
|
||||
src/map/lambertazimuthal.cpp \
|
||||
src/map/geotiff.cpp \
|
||||
src/map/pcs.cpp \
|
||||
src/map/transform.cpp \
|
||||
@ -356,16 +371,23 @@ SOURCES += src/main.cpp \
|
||||
src/map/crs.cpp \
|
||||
src/map/coordinatesystem.cpp \
|
||||
src/map/geocentric.cpp \
|
||||
src/map/mercator.cpp \
|
||||
src/map/jnxmap.cpp \
|
||||
src/map/krovak.cpp \
|
||||
src/map/map.cpp \
|
||||
src/map/geotiffmap.cpp \
|
||||
src/map/image.cpp \
|
||||
src/map/mbtilesmap.cpp \
|
||||
src/map/osm.cpp \
|
||||
src/map/polarstereographic.cpp \
|
||||
src/map/rectd.cpp \
|
||||
src/map/rmap.cpp \
|
||||
src/map/textitem.cpp \
|
||||
src/map/aqmmap.cpp \
|
||||
src/map/mapsforgemap.cpp \
|
||||
src/map/worldfilemap.cpp \
|
||||
src/data/address.cpp \
|
||||
src/data/itnparser.cpp \
|
||||
src/data/onmoveparsers.cpp \
|
||||
src/data/ov2parser.cpp \
|
||||
src/data/waypoint.cpp \
|
||||
src/data/data.cpp \
|
||||
src/data/poi.cpp \
|
||||
src/data/track.cpp \
|
||||
@ -383,33 +405,12 @@ SOURCES += src/main.cpp \
|
||||
src/data/slfparser.cpp \
|
||||
src/data/dem.cpp \
|
||||
src/data/demloader.cpp \
|
||||
src/map/obliquestereographic.cpp \
|
||||
src/GUI/coordinatesitem.cpp \
|
||||
src/map/rmap.cpp \
|
||||
src/data/exifparser.cpp \
|
||||
src/map/imgmap.cpp \
|
||||
src/map/IMG/imgdata.cpp \
|
||||
src/map/IMG/subfile.cpp \
|
||||
src/map/IMG/trefile.cpp \
|
||||
src/map/IMG/rgnfile.cpp \
|
||||
src/map/IMG/lblfile.cpp \
|
||||
src/map/IMG/vectortile.cpp \
|
||||
src/map/IMG/style.cpp \
|
||||
src/map/IMG/netfile.cpp \
|
||||
src/GUI/pathtickitem.cpp \
|
||||
src/map/textitem.cpp \
|
||||
src/data/csv.cpp \
|
||||
src/data/cupparser.cpp \
|
||||
src/GUI/graphicsscene.cpp \
|
||||
src/data/gpiparser.cpp \
|
||||
src/data/smlparser.cpp \
|
||||
src/GUI/pdfexportdialog.cpp \
|
||||
src/GUI/pngexportdialog.cpp \
|
||||
src/data/geojsonparser.cpp \
|
||||
src/map/aqmmap.cpp \
|
||||
src/map/mapsforgemap.cpp \
|
||||
src/map/worldfilemap.cpp \
|
||||
src/GUI/projectioncombobox.cpp
|
||||
src/data/geojsonparser.cpp
|
||||
|
||||
DEFINES += APP_VERSION=\\\"$$VERSION\\\" \
|
||||
QT_NO_DEPRECATED_WARNINGS
|
||||
@ -431,63 +432,24 @@ TRANSLATIONS = lang/gpxsee_en.ts \
|
||||
lang/gpxsee_uk.ts \
|
||||
lang/gpxsee_hu.ts \
|
||||
lang/gpxsee_it.ts \
|
||||
lang/gpxsee_eo.ts
|
||||
lang/gpxsee_eo.ts \
|
||||
lang/gpxsee_zh.ts
|
||||
|
||||
macx {
|
||||
ICON = icons/app/gpxsee.icns
|
||||
QMAKE_INFO_PLIST = pkg/Info.plist
|
||||
locale.path = Contents/Resources/translations
|
||||
locale.files = lang/gpxsee_en.qm \
|
||||
lang/gpxsee_cs.qm \
|
||||
lang/gpxsee_de.qm \
|
||||
lang/gpxsee_fi.qm \
|
||||
lang/gpxsee_fr.qm \
|
||||
lang/gpxsee_ru.qm \
|
||||
lang/gpxsee_sv.qm \
|
||||
lang/gpxsee_pl.qm \
|
||||
lang/gpxsee_nb.qm \
|
||||
lang/gpxsee_da.qm \
|
||||
lang/gpxsee_tr.qm \
|
||||
lang/gpxsee_es.qm \
|
||||
lang/gpxsee_pt_BR.qm \
|
||||
lang/gpxsee_uk.qm \
|
||||
lang/gpxsee_hu.qm \
|
||||
lang/gpxsee_it.qm \
|
||||
lang/gpxsee_eo.qm
|
||||
locale.files = $$files(lang/*.qm)
|
||||
csv.path = Contents/Resources
|
||||
csv.files = pkg/csv
|
||||
maps.path = Contents/Resources
|
||||
maps.files = pkg/maps
|
||||
symbols.path = Contents/Resources/symbols
|
||||
symbols.files = $$files(icons/symbols/*.png)
|
||||
icons.path = Contents/Resources/icons
|
||||
icons.files = icons/formats/gpx.icns \
|
||||
icons/formats/tcx.icns \
|
||||
icons/formats/kml.icns \
|
||||
icons/formats/fit.icns \
|
||||
icons/formats/igc.icns \
|
||||
icons/formats/nmea.icns \
|
||||
icons/formats/plt.icns \
|
||||
icons/formats/rte.icns \
|
||||
icons/formats/wpt.icns \
|
||||
icons/formats/loc.icns \
|
||||
icons/formats/slf.icns \
|
||||
icons/formats/json.icns \
|
||||
icons/formats/cup.icns \
|
||||
icons/formats/gpi.icns \
|
||||
icons/formats/sml.icns \
|
||||
icons/formats/img.icns \
|
||||
icons/formats/jnx.icns \
|
||||
icons/formats/kap.icns \
|
||||
icons/formats/mbts.icns \
|
||||
icons/formats/rmap.icns \
|
||||
icons/formats/tba.icns \
|
||||
icons/formats/aqm.icns \
|
||||
icons/formats/sqlt.icns \
|
||||
icons/formats/ov2.icns \
|
||||
icons/formats/itn.icns \
|
||||
icons/formats/wld.icns \
|
||||
icons/formats/omd.icns \
|
||||
icons/formats/ghp.icns
|
||||
QMAKE_BUNDLE_DATA += locale maps icons csv
|
||||
icons.files = $$files(icons/formats/*.icns)
|
||||
|
||||
QMAKE_BUNDLE_DATA += locale maps symbols icons csv
|
||||
}
|
||||
|
||||
win32 {
|
||||
@ -528,18 +490,20 @@ win32 {
|
||||
unix:!macx {
|
||||
isEmpty(PREFIX):PREFIX = /usr/local
|
||||
|
||||
maps.files = pkg/maps/*
|
||||
maps.files = $$files(pkg/maps/*)
|
||||
maps.path = $$PREFIX/share/gpxsee/maps
|
||||
csv.files = pkg/csv/*
|
||||
csv.files = $$files(pkg/csv/*)
|
||||
csv.path = $$PREFIX/share/gpxsee/csv
|
||||
locale.files = lang/*.qm
|
||||
symbols.files = $$files(icons/symbols/*.png)
|
||||
symbols.path = $$PREFIX/share/gpxsee/symbols
|
||||
locale.files = $$files(lang/*.qm)
|
||||
locale.path = $$PREFIX/share/gpxsee/translations
|
||||
icon.files = icons/app/hicolor/*
|
||||
icon.files = $files(icons/app/hicolor/*)
|
||||
icon.path = $$PREFIX/share/icons/hicolor
|
||||
desktop.files = pkg/gpxsee.desktop
|
||||
desktop.path = $$PREFIX/share/applications
|
||||
mime.files = pkg/gpxsee.xml
|
||||
mime.path = $$PREFIX/share/mime/packages
|
||||
target.path = $$PREFIX/bin
|
||||
INSTALLS += target maps csv locale icon desktop mime
|
||||
INSTALLS += target maps csv symbols locale icon desktop mime
|
||||
}
|
||||
|
164
gpxsee.qrc
@ -45,87 +45,91 @@
|
||||
<file alias="applications-internet_32@2x.png">icons/GUI/applications-internet_32@2x.png</file>
|
||||
<file alias="view-grid.png">icons/GUI/view-grid.png</file>
|
||||
<file alias="view-grid@2x.png">icons/GUI/view-grid@2x.png</file>
|
||||
<file alias="document-decrypt.png">icons/GUI/document-decrypt.png</file>
|
||||
<file alias="document-decrypt@2x.png">icons/GUI/document-decrypt.png</file>
|
||||
<file alias="document-encrypt.png">icons/GUI/document-encrypt.png</file>
|
||||
<file alias="document-encrypt@2x.png">icons/GUI/document-encrypt.png</file>
|
||||
</qresource>
|
||||
|
||||
<!-- POI icons for default IMG map style -->
|
||||
<qresource prefix="/POI">
|
||||
<file alias="airfield-11.png">icons/POI/airfield-11.png</file>
|
||||
<file alias="airport-11.png">icons/POI/airport-11.png</file>
|
||||
<file alias="amusement-park-11.png">icons/POI/amusement-park-11.png</file>
|
||||
<file alias="bakery-11.png">icons/POI/bakery-11.png</file>
|
||||
<file alias="bank-11.png">icons/POI/bank-11.png</file>
|
||||
<file alias="bar-11.png">icons/POI/bar-11.png</file>
|
||||
<file alias="bbq-11.png">icons/POI/bbq-11.png</file>
|
||||
<file alias="beach-11.png">icons/POI/beach-11.png</file>
|
||||
<file alias="bowling-alley-11.png">icons/POI/bowling-alley-11.png</file>
|
||||
<file alias="building-alt1-11.png">icons/POI/building-alt1-11.png</file>
|
||||
<file alias="bridge-11.png">icons/POI/bridge-11.png</file>
|
||||
<file alias="bus-11.png">icons/POI/bus-11.png</file>
|
||||
<file alias="cafe-11.png">icons/POI/cafe-11.png</file>
|
||||
<file alias="campsite-11.png">icons/POI/campsite-11.png</file>
|
||||
<file alias="car-11.png">icons/POI/car-11.png</file>
|
||||
<file alias="car-rental-11.png">icons/POI/car-rental-11.png</file>
|
||||
<file alias="car-repair-11.png">icons/POI/car-repair-11.png</file>
|
||||
<file alias="casino-11.png">icons/POI/casino-11.png</file>
|
||||
<file alias="cemetery-11.png">icons/POI/cemetery-11.png</file>
|
||||
<file alias="cinema-11.png">icons/POI/cinema-11.png</file>
|
||||
<file alias="clothing-store-11.png">icons/POI/clothing-store-11.png</file>
|
||||
<file alias="communications-tower-11.png">icons/POI/communications-tower-11.png</file>
|
||||
<file alias="convenience-11.png">icons/POI/convenience-11.png</file>
|
||||
<file alias="dam-11.png">icons/POI/dam-11.png</file>
|
||||
<file alias="danger-11.png">icons/POI/danger-11.png</file>
|
||||
<file alias="drinking-water-11.png">icons/POI/drinking-water-11.png</file>
|
||||
<file alias="fast-food-11.png">icons/POI/fast-food-11.png</file>
|
||||
<file alias="entrance-alt1-11.png">icons/POI/entrance-alt1-11.png</file>
|
||||
<file alias="fire-station-11.png">icons/POI/fire-station-11.png</file>
|
||||
<file alias="fitness-centre-11.png">icons/POI/fitness-centre-11.png</file>
|
||||
<file alias="fuel-11.png">icons/POI/fuel-11.png</file>
|
||||
<file alias="furniture-11.png">icons/POI/furniture-11.png</file>
|
||||
<file alias="garden-11.png">icons/POI/garden-11.png</file>
|
||||
<file alias="garden-centre-11.png">icons/POI/garden-centre-11.png</file>
|
||||
<file alias="golf-11.png">icons/POI/golf-11.png</file>
|
||||
<file alias="grocery-11.png">icons/POI/grocery-11.png</file>
|
||||
<file alias="hairdresser-11.png">icons/POI/hairdresser-11.png</file>
|
||||
<file alias="harbor-11.png">icons/POI/harbor-11.png</file>
|
||||
<file alias="hardware-11.png">icons/POI/hardware-11.png</file>
|
||||
<file alias="heliport-11.png">icons/POI/heliport-11.png</file>
|
||||
<file alias="hospital-11.png">icons/POI/hospital-11.png</file>
|
||||
<file alias="information-11.png">icons/POI/information-11.png</file>
|
||||
<file alias="landmark-11.png">icons/POI/landmark-11.png</file>
|
||||
<file alias="library-11.png">icons/POI/library-11.png</file>
|
||||
<file alias="lodging-11.png">icons/POI/lodging-11.png</file>
|
||||
<file alias="mountain-11.png">icons/POI/mountain-11.png</file>
|
||||
<file alias="museum-11.png">icons/POI/museum-11.png</file>
|
||||
<file alias="park-11.png">icons/POI/park-11.png</file>
|
||||
<file alias="parking-11.png">icons/POI/parking-11.png</file>
|
||||
<file alias="pharmacy-11.png">icons/POI/pharmacy-11.png</file>
|
||||
<file alias="picnic-site-11.png">icons/POI/picnic-site-11.png</file>
|
||||
<file alias="place-of-worship-11.png">icons/POI/place-of-worship-11.png</file>
|
||||
<file alias="police-11.png">icons/POI/police-11.png</file>
|
||||
<file alias="post-11.png">icons/POI/post-11.png</file>
|
||||
<file alias="religious-christian-11.png">icons/POI/religious-christian-11.png</file>
|
||||
<file alias="religious-jewish-11.png">icons/POI/religious-jewish-11.png</file>
|
||||
<file alias="religious-muslim-11.png">icons/POI/religious-muslim-11.png</file>
|
||||
<file alias="restaurant-11.png">icons/POI/restaurant-11.png</file>
|
||||
<file alias="restaurant-noodle-11.png">icons/POI/restaurant-noodle-11.png</file>
|
||||
<file alias="restaurant-pizza-11.png">icons/POI/restaurant-pizza-11.png</file>
|
||||
<file alias="restaurant-seafood-11.png">icons/POI/restaurant-seafood-11.png</file>
|
||||
<file alias="roadblock-11.png">icons/POI/roadblock-11.png</file>
|
||||
<file alias="school-11.png">icons/POI/school-11.png</file>
|
||||
<file alias="shelter-11.png">icons/POI/shelter-11.png</file>
|
||||
<file alias="shop-11.png">icons/POI/shop-11.png</file>
|
||||
<file alias="skiing-11.png">icons/POI/skiing-11.png</file>
|
||||
<file alias="soccer-11.png">icons/POI/soccer-11.png</file>
|
||||
<file alias="swimming-11.png">icons/POI/swimming-11.png</file>
|
||||
<file alias="theatre-11.png">icons/POI/theatre-11.png</file>
|
||||
<file alias="telephone-11.png">icons/POI/telephone-11.png</file>
|
||||
<file alias="toilet-11.png">icons/POI/toilet-11.png</file>
|
||||
<file alias="town-hall-11.png">icons/POI/town-hall-11.png</file>
|
||||
<file alias="viewpoint-11.png">icons/POI/viewpoint-11.png</file>
|
||||
<file alias="village-11.png">icons/POI/village-11.png</file>
|
||||
<file alias="waterfall-11.png">icons/POI/waterfall-11.png</file>
|
||||
<file alias="wetland-11.png">icons/POI/wetland-11.png</file>
|
||||
<file alias="zoo-11.png">icons/POI/zoo-11.png</file>
|
||||
|
||||
<!-- IMG map style -->
|
||||
<qresource prefix="/IMG">
|
||||
<file alias="airfield-11.png">icons/IMG/airfield-11.png</file>
|
||||
<file alias="airport-11.png">icons/IMG/airport-11.png</file>
|
||||
<file alias="amusement-park-11.png">icons/IMG/amusement-park-11.png</file>
|
||||
<file alias="bakery-11.png">icons/IMG/bakery-11.png</file>
|
||||
<file alias="bank-11.png">icons/IMG/bank-11.png</file>
|
||||
<file alias="bar-11.png">icons/IMG/bar-11.png</file>
|
||||
<file alias="bbq-11.png">icons/IMG/bbq-11.png</file>
|
||||
<file alias="beach-11.png">icons/IMG/beach-11.png</file>
|
||||
<file alias="bowling-alley-11.png">icons/IMG/bowling-alley-11.png</file>
|
||||
<file alias="building-alt1-11.png">icons/IMG/building-alt1-11.png</file>
|
||||
<file alias="bridge-11.png">icons/IMG/bridge-11.png</file>
|
||||
<file alias="bus-11.png">icons/IMG/bus-11.png</file>
|
||||
<file alias="cafe-11.png">icons/IMG/cafe-11.png</file>
|
||||
<file alias="campsite-11.png">icons/IMG/campsite-11.png</file>
|
||||
<file alias="car-11.png">icons/IMG/car-11.png</file>
|
||||
<file alias="car-rental-11.png">icons/IMG/car-rental-11.png</file>
|
||||
<file alias="car-repair-11.png">icons/IMG/car-repair-11.png</file>
|
||||
<file alias="casino-11.png">icons/IMG/casino-11.png</file>
|
||||
<file alias="cemetery-11.png">icons/IMG/cemetery-11.png</file>
|
||||
<file alias="cinema-11.png">icons/IMG/cinema-11.png</file>
|
||||
<file alias="clothing-store-11.png">icons/IMG/clothing-store-11.png</file>
|
||||
<file alias="communications-tower-11.png">icons/IMG/communications-tower-11.png</file>
|
||||
<file alias="convenience-11.png">icons/IMG/convenience-11.png</file>
|
||||
<file alias="dam-11.png">icons/IMG/dam-11.png</file>
|
||||
<file alias="danger-11.png">icons/IMG/danger-11.png</file>
|
||||
<file alias="drinking-water-11.png">icons/IMG/drinking-water-11.png</file>
|
||||
<file alias="fast-food-11.png">icons/IMG/fast-food-11.png</file>
|
||||
<file alias="entrance-alt1-11.png">icons/IMG/entrance-alt1-11.png</file>
|
||||
<file alias="fire-station-11.png">icons/IMG/fire-station-11.png</file>
|
||||
<file alias="fitness-centre-11.png">icons/IMG/fitness-centre-11.png</file>
|
||||
<file alias="fuel-11.png">icons/IMG/fuel-11.png</file>
|
||||
<file alias="furniture-11.png">icons/IMG/furniture-11.png</file>
|
||||
<file alias="garden-11.png">icons/IMG/garden-11.png</file>
|
||||
<file alias="garden-centre-11.png">icons/IMG/garden-centre-11.png</file>
|
||||
<file alias="golf-11.png">icons/IMG/golf-11.png</file>
|
||||
<file alias="grocery-11.png">icons/IMG/grocery-11.png</file>
|
||||
<file alias="hairdresser-11.png">icons/IMG/hairdresser-11.png</file>
|
||||
<file alias="harbor-11.png">icons/IMG/harbor-11.png</file>
|
||||
<file alias="hardware-11.png">icons/IMG/hardware-11.png</file>
|
||||
<file alias="heliport-11.png">icons/IMG/heliport-11.png</file>
|
||||
<file alias="hospital-11.png">icons/IMG/hospital-11.png</file>
|
||||
<file alias="information-11.png">icons/IMG/information-11.png</file>
|
||||
<file alias="landmark-11.png">icons/IMG/landmark-11.png</file>
|
||||
<file alias="library-11.png">icons/IMG/library-11.png</file>
|
||||
<file alias="lodging-11.png">icons/IMG/lodging-11.png</file>
|
||||
<file alias="mountain-11.png">icons/IMG/mountain-11.png</file>
|
||||
<file alias="museum-11.png">icons/IMG/museum-11.png</file>
|
||||
<file alias="park-11.png">icons/IMG/park-11.png</file>
|
||||
<file alias="parking-11.png">icons/IMG/parking-11.png</file>
|
||||
<file alias="pharmacy-11.png">icons/IMG/pharmacy-11.png</file>
|
||||
<file alias="picnic-site-11.png">icons/IMG/picnic-site-11.png</file>
|
||||
<file alias="place-of-worship-11.png">icons/IMG/place-of-worship-11.png</file>
|
||||
<file alias="police-11.png">icons/IMG/police-11.png</file>
|
||||
<file alias="post-11.png">icons/IMG/post-11.png</file>
|
||||
<file alias="religious-christian-11.png">icons/IMG/religious-christian-11.png</file>
|
||||
<file alias="religious-jewish-11.png">icons/IMG/religious-jewish-11.png</file>
|
||||
<file alias="religious-muslim-11.png">icons/IMG/religious-muslim-11.png</file>
|
||||
<file alias="restaurant-11.png">icons/IMG/restaurant-11.png</file>
|
||||
<file alias="restaurant-noodle-11.png">icons/IMG/restaurant-noodle-11.png</file>
|
||||
<file alias="restaurant-pizza-11.png">icons/IMG/restaurant-pizza-11.png</file>
|
||||
<file alias="restaurant-seafood-11.png">icons/IMG/restaurant-seafood-11.png</file>
|
||||
<file alias="roadblock-11.png">icons/IMG/roadblock-11.png</file>
|
||||
<file alias="school-11.png">icons/IMG/school-11.png</file>
|
||||
<file alias="shelter-11.png">icons/IMG/shelter-11.png</file>
|
||||
<file alias="shop-11.png">icons/IMG/shop-11.png</file>
|
||||
<file alias="skiing-11.png">icons/IMG/skiing-11.png</file>
|
||||
<file alias="soccer-11.png">icons/IMG/soccer-11.png</file>
|
||||
<file alias="swimming-11.png">icons/IMG/swimming-11.png</file>
|
||||
<file alias="theatre-11.png">icons/IMG/theatre-11.png</file>
|
||||
<file alias="telephone-11.png">icons/IMG/telephone-11.png</file>
|
||||
<file alias="toilet-11.png">icons/IMG/toilet-11.png</file>
|
||||
<file alias="town-hall-11.png">icons/IMG/town-hall-11.png</file>
|
||||
<file alias="viewpoint-11.png">icons/IMG/viewpoint-11.png</file>
|
||||
<file alias="village-11.png">icons/IMG/village-11.png</file>
|
||||
<file alias="waterfall-11.png">icons/IMG/waterfall-11.png</file>
|
||||
<file alias="wetland-11.png">icons/IMG/wetland-11.png</file>
|
||||
<file alias="zoo-11.png">icons/IMG/zoo-11.png</file>
|
||||
</qresource>
|
||||
|
||||
<!-- Mapsforge rendertheme -->
|
||||
|
BIN
icons/GUI/document-decrypt.png
Normal file
After Width: | Height: | Size: 541 B |
BIN
icons/GUI/document-decrypt@2x.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
icons/GUI/document-encrypt.png
Normal file
After Width: | Height: | Size: 561 B |
BIN
icons/GUI/document-encrypt@2x.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 402 B After Width: | Height: | Size: 402 B |
Before Width: | Height: | Size: 428 B After Width: | Height: | Size: 428 B |
Before Width: | Height: | Size: 383 B After Width: | Height: | Size: 383 B |
Before Width: | Height: | Size: 363 B After Width: | Height: | Size: 363 B |
Before Width: | Height: | Size: 374 B After Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 393 B After Width: | Height: | Size: 393 B |
Before Width: | Height: | Size: 395 B After Width: | Height: | Size: 395 B |
Before Width: | Height: | Size: 386 B After Width: | Height: | Size: 386 B |
Before Width: | Height: | Size: 365 B After Width: | Height: | Size: 365 B |
Before Width: | Height: | Size: 343 B After Width: | Height: | Size: 343 B |
Before Width: | Height: | Size: 378 B After Width: | Height: | Size: 378 B |
Before Width: | Height: | Size: 351 B After Width: | Height: | Size: 351 B |
Before Width: | Height: | Size: 366 B After Width: | Height: | Size: 366 B |
Before Width: | Height: | Size: 368 B After Width: | Height: | Size: 368 B |
Before Width: | Height: | Size: 390 B After Width: | Height: | Size: 390 B |
Before Width: | Height: | Size: 381 B After Width: | Height: | Size: 381 B |
Before Width: | Height: | Size: 369 B After Width: | Height: | Size: 369 B |
Before Width: | Height: | Size: 357 B After Width: | Height: | Size: 357 B |
Before Width: | Height: | Size: 356 B After Width: | Height: | Size: 356 B |
Before Width: | Height: | Size: 351 B After Width: | Height: | Size: 351 B |
Before Width: | Height: | Size: 402 B After Width: | Height: | Size: 402 B |
Before Width: | Height: | Size: 650 B After Width: | Height: | Size: 650 B |
Before Width: | Height: | Size: 376 B After Width: | Height: | Size: 376 B |
Before Width: | Height: | Size: 421 B After Width: | Height: | Size: 421 B |
Before Width: | Height: | Size: 367 B After Width: | Height: | Size: 367 B |
Before Width: | Height: | Size: 611 B After Width: | Height: | Size: 611 B |
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 403 B After Width: | Height: | Size: 403 B |
Before Width: | Height: | Size: 326 B After Width: | Height: | Size: 326 B |
Before Width: | Height: | Size: 377 B After Width: | Height: | Size: 377 B |
Before Width: | Height: | Size: 348 B After Width: | Height: | Size: 348 B |
Before Width: | Height: | Size: 402 B After Width: | Height: | Size: 402 B |
Before Width: | Height: | Size: 352 B After Width: | Height: | Size: 352 B |
Before Width: | Height: | Size: 394 B After Width: | Height: | Size: 394 B |
Before Width: | Height: | Size: 355 B After Width: | Height: | Size: 355 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 404 B After Width: | Height: | Size: 404 B |
Before Width: | Height: | Size: 366 B After Width: | Height: | Size: 366 B |
Before Width: | Height: | Size: 390 B After Width: | Height: | Size: 390 B |
Before Width: | Height: | Size: 326 B After Width: | Height: | Size: 326 B |
Before Width: | Height: | Size: 359 B After Width: | Height: | Size: 359 B |
Before Width: | Height: | Size: 341 B After Width: | Height: | Size: 341 B |
Before Width: | Height: | Size: 410 B After Width: | Height: | Size: 410 B |
@ -1,4 +1,4 @@
|
||||
The POI icons are Mapbox Maki icons (https://labs.mapbox.com/maki-icons/)
|
||||
The IMG style icons are Mapbox Maki icons (https://labs.mapbox.com/maki-icons/)
|
||||
licensed under CC0.
|
||||
|
||||
-----
|
Before Width: | Height: | Size: 345 B After Width: | Height: | Size: 345 B |
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 384 B |
Before Width: | Height: | Size: 366 B After Width: | Height: | Size: 366 B |
Before Width: | Height: | Size: 399 B After Width: | Height: | Size: 399 B |
Before Width: | Height: | Size: 369 B After Width: | Height: | Size: 369 B |
Before Width: | Height: | Size: 364 B After Width: | Height: | Size: 364 B |
Before Width: | Height: | Size: 377 B After Width: | Height: | Size: 377 B |
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 394 B After Width: | Height: | Size: 394 B |
Before Width: | Height: | Size: 365 B After Width: | Height: | Size: 365 B |
Before Width: | Height: | Size: 311 B After Width: | Height: | Size: 311 B |
Before Width: | Height: | Size: 359 B After Width: | Height: | Size: 359 B |
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 401 B |
Before Width: | Height: | Size: 361 B After Width: | Height: | Size: 361 B |
Before Width: | Height: | Size: 396 B After Width: | Height: | Size: 396 B |
Before Width: | Height: | Size: 396 B After Width: | Height: | Size: 396 B |
Before Width: | Height: | Size: 407 B After Width: | Height: | Size: 407 B |
Before Width: | Height: | Size: 383 B After Width: | Height: | Size: 383 B |
Before Width: | Height: | Size: 333 B After Width: | Height: | Size: 333 B |
Before Width: | Height: | Size: 325 B After Width: | Height: | Size: 325 B |
Before Width: | Height: | Size: 381 B After Width: | Height: | Size: 381 B |
Before Width: | Height: | Size: 399 B After Width: | Height: | Size: 399 B |
Before Width: | Height: | Size: 397 B After Width: | Height: | Size: 397 B |
Before Width: | Height: | Size: 404 B After Width: | Height: | Size: 404 B |
Before Width: | Height: | Size: 377 B After Width: | Height: | Size: 377 B |
Before Width: | Height: | Size: 428 B After Width: | Height: | Size: 428 B |
Before Width: | Height: | Size: 407 B After Width: | Height: | Size: 407 B |
Before Width: | Height: | Size: 348 B After Width: | Height: | Size: 348 B |
Before Width: | Height: | Size: 383 B After Width: | Height: | Size: 383 B |
Before Width: | Height: | Size: 373 B After Width: | Height: | Size: 373 B |
Before Width: | Height: | Size: 392 B After Width: | Height: | Size: 392 B |
Before Width: | Height: | Size: 427 B After Width: | Height: | Size: 427 B |
Before Width: | Height: | Size: 382 B After Width: | Height: | Size: 382 B |
BIN
icons/symbols/ATV.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
icons/symbols/Airport.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
icons/symbols/Amusement Park.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
icons/symbols/Anchor.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
icons/symbols/Ballpark.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
icons/symbols/Bank.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
icons/symbols/Bar.png
Normal file
After Width: | Height: | Size: 929 B |
BIN
icons/symbols/Beach.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
icons/symbols/Big Game.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
icons/symbols/Bike Trail.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
icons/symbols/Boat Ramp.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
icons/symbols/Bowling.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
icons/symbols/Bridge.png
Normal file
After Width: | Height: | Size: 938 B |
BIN
icons/symbols/Building.png
Normal file
After Width: | Height: | Size: 707 B |