Home
last modified time | relevance | path

Searched refs:setPitch (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/map/
H A Dtransform.hpp108 void setPitch(double pitch, const AnimationOptions& = {});
113 void setPitch(double pitch, optional<ScreenCoordinate> anchor, const AnimationOptions& = {});
H A Dmap.cpp443 transform.setPitch(pitchAsRadian); in cameraForLatLngs()
515 setPitch(minPitch); in setMinPitch()
526 setPitch(maxPitch); in setMaxPitch()
582 void Map::setPitch(double pitch, const AnimationOptions& animation) { in setPitch() function in mbgl::Map
584 setPitch(pitch, {}, animation); in setPitch()
587 void Map::setPitch(double pitch, optional<ScreenCoordinate> anchor, const AnimationOptions& animati… in setPitch() function in mbgl::Map
589 impl->transform.setPitch(pitch * util::DEG2RAD, anchor, animation); in setPitch()
H A Dtransform.cpp482 void Transform::setPitch(double pitch, const AnimationOptions& animation) { in setPitch() function in mbgl::Transform
483 setPitch(pitch, optional<ScreenCoordinate> {}, animation); in setPitch()
486 void Transform::setPitch(double pitch, optional<ScreenCoordinate> anchor, const AnimationOptions& a… in setPitch() function in mbgl::Transform
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/map/
H A Dmap.hpp114 void setPitch(double pitch, const AnimationOptions& = {});
115 void setPitch(double pitch, optional<ScreenCoordinate>, const AnimationOptions& = {});
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/include/
H A Dqmapboxgl.hpp104 Q_PROPERTY(double pitch READ pitch WRITE setPitch)
180 void setPitch(double pitch);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqmapboxgl.cpp860 void QMapboxGL::setPitch(double pitch_) in setPitch() function in QMapboxGL
862 d_ptr->mapObj->setPitch(pitch_); in setPitch()
1248 setPitch(newPitch); in coordinateZoomForBounds()
1254 setPitch(currentPitch); in coordinateZoomForBounds()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapboxgl/
H A Dqgeomapmapboxgl.cpp149 map->setPitch(m_cameraData.tilt()); in updateSceneGraph()