共用方式為


SpatialDataSet class

包含一組特徵和/或 kml 地面重迭的資料物件。 這是 FeatureCollection 類別的延伸模組,因此可讓您輕鬆地新增至資料來源。

屬性

bbox

資料集中所有資料的週框方塊。

features

資料集內的 GeoJSON 特徵。

groundOverlays

KML GroundOverlays 的陣列。

icons

一組圖示 URL。 索引鍵 = 圖示名稱,值 = URL。

properties

在空間資料集的文件等級提供的屬性資訊。

stats

空間資料集內容和處理時間的相關統計資料。

type

方法

computeStats(SpatialDataSet)

計算空間資料集的統計資料。

enrich(SpatialDataSet)

如果尚未提供,計算資料集的界限、統計資料和產生摘要資訊,即可擴充資料集。

getBounds(SpatialDataSet)

擷取資料集的周框方塊。 如果未在資料集上設定,則會計算它。

merge(SpatialDataSet, SpatialDataSet)

將一個空間資料集合並到另一個。

屬性詳細資料

bbox

資料集中所有資料的週框方塊。

bbox: azmaps.data.BoundingBox

屬性值

azmaps.data.BoundingBox

features

資料集內的 GeoJSON 特徵。

features: Array<azmaps.data.Feature<azmaps.data.Geometry, SimpleStyleProperties>>

屬性值

Array<azmaps.data.Feature<azmaps.data.Geometry, SimpleStyleProperties>>

groundOverlays

KML GroundOverlays 的陣列。

groundOverlays: Array<azmaps.layer.ImageLayer | OgcMapLayer>

屬性值

Array<azmaps.layer.ImageLayer | OgcMapLayer>

icons

一組圖示 URL。 索引鍵 = 圖示名稱,值 = URL。

icons: Record<string, string>

屬性值

Record<string, string>

properties

在空間資料集的文件等級提供的屬性資訊。

properties: any

屬性值

any

stats

空間資料集內容和處理時間的相關統計資料。

stats: SpatialDataSetStats

屬性值

type

type: "FeatureCollection" = "FeatureCollection"

屬性值

"FeatureCollection"

方法詳細資料

computeStats(SpatialDataSet)

計算空間資料集的統計資料。

static function computeStats(data: SpatialDataSet)

參數

data
SpatialDataSet

要計算統計資料的資料集。

enrich(SpatialDataSet)

如果尚未提供,計算資料集的界限、統計資料和產生摘要資訊,即可擴充資料集。

static function enrich(data: SpatialDataSet)

參數

data
SpatialDataSet

要擴充的資料集。

getBounds(SpatialDataSet)

擷取資料集的周框方塊。 如果未在資料集上設定,則會計算它。

static function getBounds(data: SpatialDataSet): azmaps.data.BoundingBox

參數

data
SpatialDataSet

要計算周框方塊的資料集。

傳回

azmaps.data.BoundingBox

merge(SpatialDataSet, SpatialDataSet)

將一個空間資料集合並到另一個。

static function merge(a: SpatialDataSet, b: SpatialDataSet)

參數

a
SpatialDataSet

要將資料合併到的主要資料集。

b
SpatialDataSet

要合併至主要資料集的次要資料集。