Home
last modified time | relevance | path

Searched refs:sourceLayer (Results 1 – 22 of 22) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/geometry/
H A Dfeature_index.cpp141 std::unique_ptr<GeometryTileLayer> sourceLayer; in addFeature() local
151 sourceLayer = tileData->getLayer(indexedFeature.sourceLayerName); in addFeature()
152 assert(sourceLayer); in addFeature()
154 geometryTileFeature = sourceLayer->getFeature(indexedFeature.index); in addFeature()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/
H A Dheatmap_layer.cpp48 void HeatmapLayer::setSourceLayer(const std::string& sourceLayer) { in setSourceLayer() argument
50 impl_->sourceLayer = sourceLayer; in setSourceLayer()
55 return impl().sourceLayer; in getSourceLayer()
H A Dfill_layer.cpp44 void FillLayer::setSourceLayer(const std::string& sourceLayer) { in setSourceLayer() argument
46 impl_->sourceLayer = sourceLayer; in setSourceLayer()
51 return impl().sourceLayer; in getSourceLayer()
H A Dfill_extrusion_layer.cpp44 void FillExtrusionLayer::setSourceLayer(const std::string& sourceLayer) { in setSourceLayer() argument
46 impl_->sourceLayer = sourceLayer; in setSourceLayer()
51 return impl().sourceLayer; in getSourceLayer()
H A Dlayer.cpp.ejs69 void <%- camelize(type) %>Layer::setSourceLayer(const std::string& sourceLayer) {
71 impl_->sourceLayer = sourceLayer;
76 return impl().sourceLayer;
H A Dcircle_layer.cpp44 void CircleLayer::setSourceLayer(const std::string& sourceLayer) { in setSourceLayer() argument
46 impl_->sourceLayer = sourceLayer; in setSourceLayer()
51 return impl().sourceLayer; in getSourceLayer()
H A Dline_layer.cpp45 void LineLayer::setSourceLayer(const std::string& sourceLayer) { in setSourceLayer() argument
47 impl_->sourceLayer = sourceLayer; in setSourceLayer()
52 return impl().sourceLayer; in getSourceLayer()
H A Dsymbol_layer.cpp45 void SymbolLayer::setSourceLayer(const std::string& sourceLayer) { in setSourceLayer() argument
47 impl_->sourceLayer = sourceLayer; in setSourceLayer()
52 return impl().sourceLayer; in getSourceLayer()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dlayer.cpp68 optional<std::string> sourceLayer = toString(*sourceLayerValue); in convertVectorLayer() local
69 if (!sourceLayer) { in convertVectorLayer()
73 layer->setSourceLayer(*sourceLayer); in convertVectorLayer()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dlayer_impl.hpp47 std::string sourceLayer; member in mbgl::style::Layer::Impl
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Dgeometry_tile.cpp257 for (auto sourceLayer : *options.sourceLayers) { in querySourceFeatures()
260 auto layer = getData()->getLayer(sourceLayer); in querySourceFeatures()
H A Dgeometry_tile_worker.cpp354 auto geometryLayer = (*data)->getLayer(leader.baseImpl->sourceLayer); in parse()
373 const std::string& sourceLayerID = leader.baseImpl->sourceLayer; in parse()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dgroup_by_layout.cpp23 writer.String(layer.baseImpl->sourceLayer); in layoutKey()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/
H A Dheatmap_layer.hpp26 void setSourceLayer(const std::string& sourceLayer);
H A Dfill_layer.hpp25 void setSourceLayer(const std::string& sourceLayer);
H A Dfill_extrusion_layer.hpp25 void setSourceLayer(const std::string& sourceLayer);
H A Dcircle_layer.hpp25 void setSourceLayer(const std::string& sourceLayer);
H A Dline_layer.hpp27 void setSourceLayer(const std::string& sourceLayer);
H A Dlayer.hpp.ejs43 void setSourceLayer(const std::string& sourceLayer);
H A Dsymbol_layer.hpp27 void setSourceLayer(const std::string& sourceLayer);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/layout/
H A Dsymbol_layout.hpp71 const std::unique_ptr<GeometryTileLayer> sourceLayer; member in mbgl::SymbolLayout
H A Dsymbol_layout.cpp44 sourceLayer(std::move(sourceLayer_)), in SymbolLayout()
98 const size_t featureCount = sourceLayer->featureCount(); in SymbolLayout()
100 auto feature = sourceLayer->getFeature(i); in SymbolLayout()
274 …IndexedSubfeature indexedFeature(feature.index, sourceLayer->getName(), bucketLeaderID, symbolInst… in addFeature()