toCoordinates
Normalize a coordinate to Long & lat
。
Usage
js
const { longitude, latitude, height } = toCoordinates(new Cartesian3())
const [lon, lat, alt] = toCoordinates(new Cartesian3())
const pos1 = toCoordinates(new Cartesian3())
const pos2 = toCoordinates([100, 20])
const pos3 = toCoordinates([100, 20, 10])
const pos4 = toCoordinates({
longitude: 100,
latitude: 20
})
const pos5 = toCoordinates({
longitude: 100,
latitude: 20,
height: 10
})
Type Declarations
Details
ts
/**
* Normalized Cartesian3/coordinates/... to coordinates.
*
* ## example
* ```js
* toCoordinates([120, 80])
* toCoordinates([120, 80, 1000])
* toCoordinates(Cesium.Cartesian3.fromDegrees(120, 80))
* ```
*/
export declare function toCoordinates(
source: Cesium.Cartesian3 | MaybeCoordinates,
): {
longitude: number
latitude: number
height: number | undefined
} & (number | undefined)[]