Condividi tramite


WKT class

Classe statica per la lettura/scrittura di stringhe WKT (Well Known Text) come geometrie GeoJSON.

Metodi

read(string)

Legge i dati in formato testo noto e restituisce la geometria. Se la geometria è geometryCollection, viene restituita una matrice di geometrie.

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

Scrive dati geometrici come testo noto.

Dettagli metodo

read(string)

Legge i dati in formato testo noto e restituisce la geometria. Se la geometria è geometryCollection, viene restituita una matrice di geometrie.

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

Parametri

wkt

string

Dati di stringa di testo noti che devono essere analizzati in geometrie.

Restituisce

azmaps.data.Geometry[]

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

Scrive dati geometrici come testo noto.

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

Parametri

data

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

Dati geometrici da scrivere come testo noto. La matrice di geometrie verrà scritta come raccolte geometry.

coordinatePrecision

number

Numero di posizioni decimali a cui arrotondare le coordinate. Impostazione predefinita: 6.

includeElev

boolean

Specifica se devono essere scritti i dati di elevazione, archiviati nel terzo valore di Position. Se impostato su true e nessun dato di elevazione in Posizione, per impostazione predefinita sarà 0.

Restituisce

string