Home
last modified time | relevance | path

Searched refs:GeometryCollection (Results 1 – 25 of 35) sorted by relevance

12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Dgeometry_tile_data.hpp31 class GeometryCollection : public std::vector<GeometryCoordinates> { class
35GeometryCollection(Args&&... args) : std::vector<GeometryCoordinates>(std::forward<Args>(args)...)… in GeometryCollection() function in mbgl::GeometryCollection
36 GeometryCollection(std::initializer_list<GeometryCoordinates> args) in GeometryCollection() function in mbgl::GeometryCollection
47 virtual GeometryCollection getGeometries() const = 0;
73 std::vector<GeometryCollection> classifyRings(const GeometryCollection&);
76 void limitHoles(GeometryCollection&, uint32_t maxHoles);
83 GeometryCollection fixupPolygons(const GeometryCollection&);
86 GeometryCollection operator()(const mapbox::geometry::point<int16_t>& geom) const { in operator ()()
89 GeometryCollection operator()(const mapbox::geometry::multi_point<int16_t>& geom) const { in operator ()()
97 GeometryCollection operator()(const mapbox::geometry::line_string<int16_t>& geom) const { in operator ()()
[all …]
H A Dgeometry_tile_data.cpp29 static GeometryCollection toGeometryCollection(MultiPolygon<int16_t>&& multipolygon) { in toGeometryCollection()
30 GeometryCollection result; in toGeometryCollection()
39 GeometryCollection fixupPolygons(const GeometryCollection& rings) { in fixupPolygons()
54 std::vector<GeometryCollection> classifyRings(const GeometryCollection& rings) { in classifyRings()
55 std::vector<GeometryCollection> polygons; in classifyRings()
64 GeometryCollection polygon; in classifyRings()
90 void limitHoles(GeometryCollection& polygon, uint32_t maxHoles) { in limitHoles()
115 GeometryCollection geometries = geometryTileFeature.getGeometries(); in convertGeometry()
H A Dgeojson_tile_data.hpp28 GeometryCollection getGeometries() const override { in getGeometries()
29 GeometryCollection geometry = apply_visitor(ToGeometryCollection(), feature.geometry); in getGeometries()
H A Dvector_tile_data.cpp36 GeometryCollection VectorTileFeature::getGeometries() const { in getGeometries()
38 auto lines = feature.getGeometries<GeometryCollection>(scale); in getGeometries()
H A Dvector_tile_data.hpp20 GeometryCollection getGeometries() const override;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dintersection_tests.hpp8 bool polygonIntersectsBufferedMultiPoint(const GeometryCoordinates&, const GeometryCollection&, flo…
9 bool polygonIntersectsBufferedMultiLine(const GeometryCoordinates&, const GeometryCollection&, floa…
11 bool polygonIntersectsMultiPolygon(const GeometryCoordinates&, const GeometryCollection&);
H A Dintersection_tests.cpp91 …rsectsBufferedMultiPoint(const GeometryCoordinates& polygon, const GeometryCollection& rings, floa… in polygonIntersectsBufferedMultiPoint()
100 …ersectsBufferedMultiLine(const GeometryCoordinates& polygon, const GeometryCollection& multiLine, … in polygonIntersectsBufferedMultiLine()
128 bool polygonIntersectsMultiPolygon(const GeometryCoordinates& polygon, const GeometryCollection& mu… in polygonIntersectsMultiPolygon()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dannotation_tile.cpp26 GeometryCollection&& geometries_, in AnnotationTileFeatureData()
36 GeometryCollection geometries;
62 GeometryCollection AnnotationTileFeature::getGeometries() const { in getGeometries()
92 GeometryCollection geometries, in addFeature()
H A Dannotation_tile.hpp31 GeometryCollection getGeometries() const override;
49 GeometryCollection,
H A Dsymbol_annotation_impl.cpp21 …layer.addFeature(id, FeatureType::Point, GeometryCollection {{ {{ tilePoint }} }}, featureProperti… in updateLayer()
H A Dshape_annotation_impl.cpp49GeometryCollection renderGeometry = apply_visitor(toGeometryCollection, shapeFeature.geometry); in updateTileData()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/layout/
H A Dclip_lines.hpp12 GeometryCollection clipLines(const GeometryCollection &lines,
H A Dmerge_lines.hpp19 GeometryCollection &geom);
25 GeometryCollection &geom);
H A Dclip_lines.cpp8 GeometryCollection clipLines(const GeometryCollection &lines, in clipLines()
11 GeometryCollection clippedLines; in clipLines()
H A Dmerge_lines.cpp16 GeometryCollection& geom) { in mergeFromRight()
32 GeometryCollection& geom) { in mergeFromLeft()
58 GeometryCollection& geometry = feature.geometry; in mergeLines()
H A Dsymbol_feature.hpp22 GeometryCollection getGeometries() const override { return geometry; }; in getGeometries()
25 GeometryCollection geometry;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_line_layer.cpp149 optional<GeometryCollection> offsetLine(const GeometryCollection& rings, const double offset) { in offsetLine()
152 GeometryCollection newRings; in offsetLine()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dbucket.hpp44 const GeometryCollection&) {}; in addFeature() argument
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/buckets/
H A Dcircle_bucket.hpp21 const GeometryCollection&) override;
H A Dheatmap_bucket.hpp21 const GeometryCollection&) override;
H A Dfill_extrusion_bucket.hpp20 const GeometryCollection&) override;
H A Dfill_bucket.hpp22 const GeometryCollection&) override;
H A Dline_bucket.hpp25 const GeometryCollection&) override;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dexpression.cpp20 GeometryCollection getGeometries() const override { return {}; } in getGeometries()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/geojson_viewer/
H A DGeoJsonDelegateMapObject.qml132 roleValue: "GeometryCollection"
134 property string geojsonType: "GeometryCollection"

12