| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/ |
| H A D | geo.hpp | 82 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 D | tileset.hpp | 25 optional<LatLngBounds> bounds;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/ |
| H A D | geo.cpp | 32 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 D | tile_cover.hpp | 14 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 D | tile_cover.cpp | 142 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 D | tile_range.hpp | 17 … 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 D | tile_cover_impl.hpp | 14 class LatLngBounds;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/ |
| H A D | symbol_annotation_impl.hpp | 63 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 D | render_annotation_source.cpp | 44 optional<LatLngBounds> {}, in update()
|
| H A D | annotation_manager.hpp | 16 class LatLngBounds;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/map/ |
| H A D | map_snapshotter.cpp | 22 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 D | map_snapshotter.hpp | 20 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 D | map.hpp | 70 …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 D | transform_state.hpp | 54 void setLatLngBounds(optional<LatLngBounds>); 55 optional<LatLngBounds> getLatLngBounds() const; 96 optional<LatLngBounds> bounds;
|
| H A D | map.cpp | 367 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 D | transform.hpp | 59 void setLatLngBounds(optional<LatLngBounds>);
|
| H A D | transform_state.cpp | 169 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 D | offline.hpp | 30 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 D | offline.cpp | 15 … 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 D | custom_tile_loader.hpp | 30 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 D | custom_geometry_source.hpp | 44 void invalidateRegion(const LatLngBounds&);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/sources/ |
| H A D | custom_geometry_source.cpp | 40 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 D | tile_pyramid.hpp | 43 optional<LatLngBounds> bounds,
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/sources/ |
| H A D | render_geojson_source.cpp | 65 optional<LatLngBounds>{}, in update()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/ |
| H A D | tileset.cpp | 109 result.bounds = LatLngBounds::hull({ *bottom, *left }, { *top, *right }); in operator ()()
|