你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

VectorTileSource class

矢量图块源介绍如何访问矢量图块层。 矢量图块源可与 一起使用;SymbolLayer、LineLayer、PolygonLayer、BubbleLayer、HeatmapLayer 和 VectorTileLayer。

Extends

构造函数

VectorTileSource(string, VectorTileSourceOptions)

方法

getOptions()

获取 VectorTileSource 的选项。

getShape(string, Expression)

返回 VectorTileSource 中满足指定筛选表达式的所有 GeoJSON 特征。

继承的方法

getId()

获取数据源的 ID

构造函数详细信息

VectorTileSource(string, VectorTileSourceOptions)

new VectorTileSource(id?: string, options?: VectorTileSourceOptions)

参数

id

string

方法详细信息

getOptions()

获取 VectorTileSource 的选项。

function getOptions(): VectorTileSourceOptions

返回

getShape(string, Expression)

返回 VectorTileSource 中满足指定筛选表达式的所有 GeoJSON 特征。

function getShape(sourceLayer: string, filter?: Expression): Array<Feature<atlas.data.Geometry, any>>

参数

sourceLayer

string

如果源是 VectorTileSource,则为必需。 指定要查询的 VectorTileSource 中的层。

filter
Expression

将限制查询的筛选器。

返回

Array<Feature<Geometry, any>>

继承的方法详细信息

getId()

获取数据源的 ID

function getId(): string

返回

string

继承自Source.getId