我从 mapbox 中找到了这个信息。如何从矢量服务源获取几何类型?
{
account: "wandergis",
tilesetid: ""
}
account:"***"
layers:[
{
account: "***",
tilesetid: "wandergis.37w768q3",
layer: "putian",
geometry: "Point"
}]
我从 mapbox 中找到了这个信息。如何从矢量服务源获取几何类型?
{
account: "wandergis",
tilesetid: ""
}
account:"***"
layers:[
{
account: "***",
tilesetid: "wandergis.37w768q3",
layer: "putian",
geometry: "Point"
}]
矢量切片图层中的每个要素都可能具有不同的几何类型。与这些数据交互的主要方式有两种:
$type
过滤器根据几何类型显示/隐藏特征https://www.mapbox.com/mapbox-gl-style-spec/#types-filterquerySourceFeatures
获取所有可见矢量切片功能的列表作为 GeoJSON 功能并检查其type
属性https://www.mapbox.com/mapbox-gl-js/api/#Map#querySourceFeatures http://geojson.org/geojson- spec.html#feature-objects