File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ QGeoTiledMapReply* GeoTileFetcher::getTileImage(const QGeoTileSpec& spec)
154154 {
155155 request.setUrl (
156156 QUrl (QStringLiteral (" https://api.mapbox.com/styles/v1/cloudpix4d/" )
157- + (( spec.mapId () - 1 >= m_mapIds.size ()) ? QStringLiteral ( " ck8zz9gpq0vty1ip30bji3b5a " ) : m_mapIds[ spec.mapId () - 1 ])
157+ + m_mapIds[( spec.mapId () > m_mapIds.size ()) ? 0 : spec.mapId () - 1 ]
158158 + QLatin1String (" /tiles/256/" )
159159 + QString::number (spec.zoom ())
160160 + QLatin1Char (' /' )
Original file line number Diff line number Diff line change @@ -74,17 +74,17 @@ GeoTiledMappingManagerEngine::GeoTiledMappingManagerEngine(const QVariantMap& pa
7474 QVector<QString> mapIds;
7575 if (usingMapBox)
7676 {
77- mapTypes << QGeoMapType (QGeoMapType::StreetMap ,
78- QStringLiteral (" ck8zz9gpq0vty1ip30bji3b5a " ),
79- QStringLiteral (" Street " ),
77+ mapTypes << QGeoMapType (QGeoMapType::HybridMap ,
78+ QStringLiteral (" ck8zzfxb30vwp1jo04yktjtbg " ),
79+ QStringLiteral (" Streets Satellite " ),
8080 false ,
8181 false ,
8282 mapTypes.size () + 1 ,
8383 pluginName,
8484 cameraCaps);
85- mapTypes << QGeoMapType (QGeoMapType::HybridMap ,
86- QStringLiteral (" ck8zzfxb30vwp1jo04yktjtbg " ),
87- QStringLiteral (" Streets Satellite " ),
85+ mapTypes << QGeoMapType (QGeoMapType::StreetMap ,
86+ QStringLiteral (" ck8zz9gpq0vty1ip30bji3b5a " ),
87+ QStringLiteral (" Street " ),
8888 false ,
8989 false ,
9090 mapTypes.size () + 1 ,
You can’t perform that action at this time.
0 commit comments