Home
last modified time | relevance | path

Searched refs:mapObj (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqmapboxgl.cpp607 d_ptr->mapObj->cycleDebugOptions(); in cycleDebugOptions()
623 return QString::fromStdString(d_ptr->mapObj->getStyle().getJSON()); in styleJson()
628 d_ptr->mapObj->getStyle().loadJSON(style.toStdString()); in setStyleJson()
648 return QString::fromStdString(d_ptr->mapObj->getStyle().getURL()); in styleUrl()
653 d_ptr->mapObj->getStyle().loadURL(url.toStdString()); in setStyleUrl()
665 return d_ptr->mapObj->getLatLng(d_ptr->margins).latitude(); in latitude()
670 d_ptr->mapObj->setLatLng(mbgl::LatLng { latitude_, longitude() }, d_ptr->margins); in setLatitude()
683 return d_ptr->mapObj->getLatLng(d_ptr->margins).longitude(); in longitude()
688 d_ptr->mapObj->setLatLng(mbgl::LatLng { latitude(), longitude_ }, d_ptr->margins); in setLongitude()
706 return std::pow(2.0, d_ptr->mapObj->getZoom()); in scale()
[all …]
H A Dqmapboxgl_p.hpp41 std::unique_ptr<mbgl::Map> mapObj; member in QMapboxGLPrivate
H A Dqmapboxgl_map_observer.cpp113 for (const auto& source : d_ptr->mapObj->getStyle().getSources()) { in onSourceChanged()