1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-30 18:34:23 +02:00

Added support for Garmin JNX maps

This commit is contained in:
2018-05-22 22:40:15 +02:00
parent ba7074f902
commit 0d879e61a9
17 changed files with 377 additions and 114 deletions

View File

@ -15,7 +15,7 @@ class Map : public QObject
Q_OBJECT
public:
Map(QObject *parent = 0) : QObject(parent), _backgroundColor(Qt::white) {}
Map(QObject *parent = 0) : QObject(parent) {}
virtual ~Map() {}
virtual const QString &name() const = 0;
@ -41,13 +41,8 @@ public:
virtual bool isValid() const {return true;}
virtual QString errorString() const {return QString();}
void setBackgroundColor(const QColor &color) {_backgroundColor = color;}
signals:
void loaded();
protected:
QColor _backgroundColor;
};
#endif // MAP_H