Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dtile_cover.cpp142 std::vector<UnwrappedTileID> tileCover(const LatLngBounds& bounds_, int32_t z) { in tileCover() argument
143 if (bounds_.isEmpty() || in tileCover()
144 bounds_.south() > util::LATITUDE_MAX || in tileCover()
145 bounds_.north() < -util::LATITUDE_MAX) { in tileCover()
150 { std::max(bounds_.south(), -util::LATITUDE_MAX), bounds_.west() }, in tileCover()
151 { std::min(bounds_.north(), util::LATITUDE_MAX), bounds_.east() }); in tileCover()
216 TileCover::TileCover(const LatLngBounds&bounds_, int32_t z) { in TileCover() argument
218 { std::max(bounds_.south(), -util::LATITUDE_MAX), bounds_.west() }, in TileCover()
219 { std::min(bounds_.north(), util::LATITUDE_MAX), bounds_.east() }); in TileCover()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/storage/
H A Doffline.cpp15 … std::string styleURL_, LatLngBounds bounds_, double minZoom_, double maxZoom_, float pixelRatio_) in OfflineTilePyramidRegionDefinition() argument
17 bounds(std::move(bounds_)), in OfflineTilePyramidRegionDefinition()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/map/
H A Dtransform_state.cpp169 void TransformState::setLatLngBounds(optional<LatLngBounds> bounds_) { in setLatLngBounds() argument
170 if (bounds_ != bounds) { in setLatLngBounds()
171 bounds = bounds_; in setLatLngBounds()