forked from vladest/googlemaps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqgeotiledmapgooglemaps.cpp
More file actions
35 lines (28 loc) · 928 Bytes
/
qgeotiledmapgooglemaps.cpp
File metadata and controls
35 lines (28 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include "qgeotiledmapgooglemaps.h"
#include "qgeotiledmappingmanagerenginegooglemaps.h"
#if QT_VERSION <= QT_VERSION_CHECK(5,6,0)
#include "QtLocation/private/qgeomapcontroller_p.h"
#endif
#include <QDebug>
#include <QObject>
#include <QColor>
#include <QFont>
#include <QPainter>
#include <QImage>
#include <QRect>
#include <QStaticText>
QT_BEGIN_NAMESPACE
/*!
Constructs a new tiled map data object, which stores the map data required by
\a geoMap and makes use of the functionality provided by \a engine.
*/
QGeoTiledMapGooglemaps::QGeoTiledMapGooglemaps(QGeoTiledMappingManagerEngineGooglemaps *engine, QObject *parent /*= 0*/) :
QGeoTiledMap(engine, parent),
m_engine(engine)
{}
QGeoTiledMapGooglemaps::~QGeoTiledMapGooglemaps() {}
void QGeoTiledMapGooglemaps::evaluateCopyrights(const QSet<QGeoTileSpec> &visibleTiles)
{
Q_UNUSED(visibleTiles);
}
QT_END_NAMESPACE