1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/map/mapsource.h

51 lines
860 B
C
Raw Normal View History

2018-01-29 00:19:57 +01:00
#ifndef MAPSOURCE_H
#define MAPSOURCE_H
#include <QList>
#include "common/range.h"
#include "common/rectc.h"
#include "downloader.h"
2018-04-05 21:13:48 +02:00
#include "coordinatesystem.h"
class Map;
class QXmlStreamReader;
2018-01-29 00:19:57 +01:00
class MapSource
{
public:
2018-05-22 22:40:15 +02:00
static Map *loadMap(const QString &path, QString &errorString);
private:
enum Type {
OSM,
WMTS,
WMS
};
struct Config {
Type type;
QString name;
QString url;
Range zooms;
RectC bounds;
QString layer;
QString style;
QString set;
QString format;
QString crs;
2018-04-07 18:42:25 +02:00
CoordinateSystem coordinateSystem;
bool rest;
2018-03-11 10:31:41 +01:00
QList<QPair<QString, QString> > dimensions;
Authorization authorization;
2018-08-18 21:06:36 +02:00
qreal tileRatio;
Config();
};
2018-05-22 22:40:15 +02:00
static RectC bounds(QXmlStreamReader &reader);
static Range zooms(QXmlStreamReader &reader);
static void map(QXmlStreamReader &reader, Config &config);
};
2018-01-29 00:19:57 +01:00
#endif // MAPSOURCE_H