Home
last modified time | relevance | path

Searched refs:LatLngBounds (Results 1 – 25 of 31) sorted by relevance

12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/
H A Dgeo.hpp82 class LatLngBounds { class
85 static LatLngBounds world() { in world()
86 return LatLngBounds({-90, -180}, {90, 180}); in world()
90 static LatLngBounds singleton(const LatLng& a) { in singleton()
91 return LatLngBounds(a, a); in singleton()
95 static LatLngBounds hull(const LatLng& a, const LatLng& b) { in hull()
96 LatLngBounds bounds(a, a); in hull()
102 static LatLngBounds empty() { in empty()
103 LatLngBounds bounds = world(); in empty()
109 LatLngBounds(const CanonicalTileID&);
[all …]
H A Dtileset.hpp25 optional<LatLngBounds> bounds;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dgeo.cpp32 LatLngBounds::LatLngBounds(const CanonicalTileID& id) in LatLngBounds() function in mbgl::LatLngBounds
37 bool LatLngBounds::contains(const CanonicalTileID& tileID) const { in contains()
41 bool LatLngBounds::contains(const LatLng& point, LatLng::WrapMode wrap /*= LatLng::Unwrapped*/) con… in contains()
53 LatLngBounds wrapped(sw.wrapped(), ne.wrapped()); in contains()
68 bool LatLngBounds::contains(const LatLngBounds& area, LatLng::WrapMode wrap /*= LatLng::Unwrapped*/… in contains()
78 LatLngBounds wrapped(sw.wrapped(), ne.wrapped()); in contains()
79 LatLngBounds other(area.sw.wrapped(), area.ne.wrapped()); in contains()
90 bool LatLngBounds::intersects(const LatLngBounds area, LatLng::WrapMode wrap /*= LatLng::Unwrapped*… in intersects()
100 LatLngBounds wrapped(sw.wrapped(), ne.wrapped()); in intersects()
101 LatLngBounds other(area.sw.wrapped(), area.ne.wrapped()); in intersects()
H A Dtile_cover.hpp14 class LatLngBounds;
21 TileCover(const LatLngBounds&, int32_t z);
37 std::vector<UnwrappedTileID> tileCover(const LatLngBounds&, int32_t z);
41 uint64_t tileCount(const LatLngBounds&, uint8_t z);
H A Dtile_cover.cpp142 std::vector<UnwrappedTileID> tileCover(const LatLngBounds& bounds_, int32_t z) { in tileCover()
149 LatLngBounds bounds = LatLngBounds::hull( in tileCover()
189 uint64_t tileCount(const LatLngBounds& bounds, uint8_t zoom){ in tileCount()
216 TileCover::TileCover(const LatLngBounds&bounds_, int32_t z) { in TileCover()
217 LatLngBounds bounds = LatLngBounds::hull( in TileCover()
224 bounds = LatLngBounds::world(); in TileCover()
H A Dtile_range.hpp17 … static TileRange fromLatLngBounds(const LatLngBounds& bounds, uint8_t minZoom, uint8_t maxZoom) { in fromLatLngBounds()
36 static TileRange fromLatLngBounds(const LatLngBounds& bounds, uint8_t z) { in fromLatLngBounds()
H A Dtile_cover_impl.hpp14 class LatLngBounds;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dsymbol_annotation_impl.hpp63 template<> struct tag<mbgl::LatLngBounds> { using type = box_tag; };
64 template<> struct point_type<mbgl::LatLngBounds> { using type = mbgl::LatLng; };
67 struct indexed_access<mbgl::LatLngBounds, min_corner, D>
70 static inline ct get(mbgl::LatLngBounds const& b) { return geometry::get<D>(b.southwest()); } in get()
71 …static inline void set(mbgl::LatLngBounds& b, ct const& value) { geometry::set<D>(b.southwest(), v… in set()
75 struct indexed_access<mbgl::LatLngBounds, max_corner, D>
78 static inline ct get(mbgl::LatLngBounds const& b) { return geometry::get<D>(b.northeast()); } in get()
79 …static inline void set(mbgl::LatLngBounds& b, ct const& value) { geometry::set<D>(b.northeast(), v… in set()
H A Drender_annotation_source.cpp44 optional<LatLngBounds> {}, in update()
H A Dannotation_manager.hpp16 class LatLngBounds;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/map/
H A Dmap_snapshotter.cpp22 const optional<LatLngBounds> region,
37 void setRegion(LatLngBounds);
38 LatLngBounds getRegion() const;
54 const optional<LatLngBounds> region, in Impl()
154 void MapSnapshotter::Impl::setRegion(LatLngBounds region) { in setRegion()
160 LatLngBounds MapSnapshotter::Impl::getRegion() const { in getRegion()
170 const optional<LatLngBounds> region, in MapSnapshotter()
213 void MapSnapshotter::setRegion(const LatLngBounds& bounds) { in setRegion()
217 LatLngBounds MapSnapshotter::getRegion() const { in getRegion()
H A Dmap_snapshotter.hpp20 class LatLngBounds;
34 const optional<LatLngBounds> region,
51 void setRegion(const LatLngBounds&);
52 LatLngBounds getRegion() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/map/
H A Dmap.hpp70 …CameraOptions cameraForLatLngBounds(const LatLngBounds&, const EdgeInsets&, optional<double> beari…
73 LatLngBounds latLngBoundsForCamera(const CameraOptions&) const;
93 void setLatLngBounds(optional<LatLngBounds>);
94 optional<LatLngBounds> getLatLngBounds() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/map/
H A Dtransform_state.hpp54 void setLatLngBounds(optional<LatLngBounds>);
55 optional<LatLngBounds> getLatLngBounds() const;
96 optional<LatLngBounds> bounds;
H A Dmap.cpp367 CameraOptions Map::cameraForLatLngBounds(const LatLngBounds& bounds, const EdgeInsets& padding, opt… in cameraForLatLngBounds()
462 LatLngBounds Map::latLngBoundsForCamera(const CameraOptions& camera) const { in latLngBoundsForCamera()
467 return LatLngBounds::hull( in latLngBoundsForCamera()
480 optional<LatLngBounds> Map::getLatLngBounds() const { in getLatLngBounds()
484 void Map::setLatLngBounds(optional<LatLngBounds> bounds) { in setLatLngBounds()
H A Dtransform.hpp59 void setLatLngBounds(optional<LatLngBounds>);
H A Dtransform_state.cpp169 void TransformState::setLatLngBounds(optional<LatLngBounds> bounds_) { in setLatLngBounds()
176 optional<LatLngBounds> TransformState::getLatLngBounds() const { in getLatLngBounds()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/storage/
H A Doffline.hpp30 OfflineTilePyramidRegionDefinition(std::string, LatLngBounds, double, double, float);
36 const LatLngBounds bounds;
/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()
79 LatLngBounds bounds = LatLngBounds::hull( in decodeOfflineRegionDefinition()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dcustom_tile_loader.hpp30 void invalidateRegion(const LatLngBounds&, Range<uint8_t>);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/sources/
H A Dcustom_geometry_source.hpp44 void invalidateRegion(const LatLngBounds&);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/sources/
H A Dcustom_geometry_source.cpp40 void CustomGeometrySource::invalidateRegion(const LatLngBounds& bounds) { in invalidateRegion()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dtile_pyramid.hpp43 optional<LatLngBounds> bounds,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/sources/
H A Drender_geojson_source.cpp65 optional<LatLngBounds>{}, in update()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dtileset.cpp109 result.bounds = LatLngBounds::hull({ *bottom, *left }, { *top, *right }); in operator ()()

12