共用方式為


WKT class

用來讀取/寫入已知文字的靜態類別, (WKT) 字串作為 GeoJSON 幾何。

方法

read(string)

以已知的文字格式讀取資料,並傳回幾何。 如果 geometry 是 GeometryCollection,則會傳回幾何陣列。

write(azmaps.data.Geometry | azmaps.data.Feature<azmaps.data.Geometry, any> | Array<azmaps>, number, boolean)

將幾何資料寫入已知的文字。

方法詳細資料

read(string)

以已知的文字格式讀取資料,並傳回幾何。 如果 geometry 是 GeometryCollection,則會傳回幾何陣列。

static function read(wkt: string): azmaps.data.Geometry[]

參數

wkt

string

需要剖析為幾何的已知文字字串資料。

傳回

azmaps.data.Geometry[]

write(azmaps.data.Geometry | azmaps.data.Feature<azmaps.data.Geometry, any> | Array<azmaps>, number, boolean)

將幾何資料寫入已知的文字。

static function write(data: azmaps.data.Geometry | azmaps.data.Feature<azmaps.data.Geometry, any> | Array<azmaps>, coordinatePrecision?: number, includeElev?: boolean): string

參數

data

azmaps.data.Geometry | azmaps.data.Feature<azmaps.data.Geometry, any> | Array<azmaps>

要寫入為已知文字的幾何資料。 幾何陣列會寫入為 geometry 集合。

coordinatePrecision

number

要四捨五入座標的小數位數。 預設值:6。

includeElev

boolean

指定是否應該寫入位置的第 3 個值儲存的提高許可權資料。 如果設定為 true 且 [位置] 中沒有提高許可權資料,則預設為 0。

傳回

string