Home
last modified time | relevance | path

Searched refs:setZoom (Results 1 – 13 of 13) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/map/
H A Dtransform.hpp69 void setZoom(double zoom, const AnimationOptions& = {});
74 void setZoom(double zoom, optional<ScreenCoordinate> anchor, const AnimationOptions& = {});
78 void setZoom(double zoom, const EdgeInsets& padding, const AnimationOptions& = {});
H A Dmap.cpp335 void Map::setZoom(double zoom, const AnimationOptions& animation) { in setZoom() function in mbgl::Map
337 setZoom(zoom, EdgeInsets(), animation); in setZoom()
340 void Map::setZoom(double zoom, optional<ScreenCoordinate> anchor, const AnimationOptions& animation… in setZoom() function in mbgl::Map
342 impl->transform.setZoom(zoom, anchor, animation); in setZoom()
346 void Map::setZoom(double zoom, const EdgeInsets& padding, const AnimationOptions& animation) { in setZoom() function in mbgl::Map
348 impl->transform.setZoom(zoom, padding, animation); in setZoom()
475 setZoom(0); in resetZoom()
493 setZoom(minZoom); in setMinZoom()
504 setZoom(maxZoom); in setMaxZoom()
H A Dtransform.cpp384 void Transform::setZoom(double zoom, const AnimationOptions& animation) { in setZoom() function in mbgl::Transform
390 void Transform::setZoom(double zoom, optional<ScreenCoordinate> anchor, const AnimationOptions& ani… in setZoom() function in mbgl::Transform
397 void Transform::setZoom(double zoom, const EdgeInsets& padding, const AnimationOptions& animation) { in setZoom() function in mbgl::Transform
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeotilespec/
H A Dtst_qgeotilespec.cpp123 tileSpec.setZoom(1); in zoomTest()
128 tileSpec.setZoom(2); in zoomTest()
221 testObj2.setZoom(zoom+1); in equalsOperatorTest()
254 testObj2.setZoom(zoom-1); in lessThanOperatorTest()
308 testObj2.setZoom(testObj3.zoom()+1); in qHashTest()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/map/
H A Dmap.hpp84 void setZoom(double zoom, const AnimationOptions& = {});
85 void setZoom(double zoom, optional<ScreenCoordinate>, const AnimationOptions& = {});
86 void setZoom(double zoom, const EdgeInsets&, const AnimationOptions& = {});
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeotilespec_p.h73 void setZoom(int zoom);
H A Dqgeotilespec.cpp70 void QGeoTileSpec::setZoom(int zoom) in setZoom() function in QGeoTileSpec
H A Dqgeotilerequestmanager.cpp139 spec.setZoom(z); in requestTiles()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/include/
H A Dqmapboxgl.hpp102 Q_PROPERTY(double zoom READ zoom WRITE setZoom)
170 void setZoom(double zoom);
/OK3568_Linux_fs/external/rockit/tgi/sdk/include/
H A DRTUVCGraph.h69 RT_RET setZoom(float val);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqmapboxgl.cpp711 d_ptr->mapObj->setZoom(::log2(scale_), mbgl::ScreenCoordinate { center.x(), center.y() }); in setScale()
729 void QMapboxGL::setZoom(double zoom_) in setZoom() function in QMapboxGL
731 d_ptr->mapObj->setZoom(zoom_, d_ptr->margins); in setZoom()
1119 …d_ptr->mapObj->setZoom(d_ptr->mapObj->getZoom() + ::log2(scale_), mbgl::ScreenCoordinate { center.… in scaleBy()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapboxgl/
H A Dqgeomapmapboxgl.cpp147 map->setZoom(zoomLevelFrom256(m_cameraData.zoomLevel() , MBGL_TILE_SIZE)); in updateSceneGraph()
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/java/com/rockchip/gpadc/demo/
H A DCameraPreviewActivity.java329 parameters.setZoom(0); in setCameraParameters()