1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-06-27 03:29:16 +02:00

Added initial MBTiles support

This commit is contained in:
2018-09-20 07:59:47 +02:00
parent c2e301f4e8
commit db98f381b5
10 changed files with 363 additions and 51 deletions

View File

@ -1,9 +1,10 @@
TARGET = GPXSee
VERSION = 5.18
VERSION = 6.0
QT += core \
gui \
network
network \
sql
greaterThan(QT_MAJOR_VERSION, 4) {
QT += widgets
QT += printsupport
@ -142,7 +143,9 @@ HEADERS += src/config.h \
src/data/slfparser.h \
src/map/geotiffmap.h \
src/map/image.h \
src/common/greatcircle.h
src/common/greatcircle.h \
src/map/mbtilesmap.h \
src/map/osm.h
SOURCES += src/main.cpp \
src/common/coordinates.cpp \
src/common/rectc.cpp \
@ -248,7 +251,9 @@ SOURCES += src/main.cpp \
src/data/slfparser.cpp \
src/map/geotiffmap.cpp \
src/map/image.cpp \
src/common/greatcircle.cpp
src/common/greatcircle.cpp \
src/map/mbtilesmap.cpp \
src/map/osm.cpp
RESOURCES += gpxsee.qrc
TRANSLATIONS = lang/gpxsee_en.ts \