fromRadiansArrayHeights
fun fromRadiansArrayHeights(coordinates: ERROR CLASS: Symbol not found for ReadonlyArray<ERROR CLASS: Symbol not found for JsDouble>, ellipsoid: Ellipsoid? = definedExternally, result: ERROR CLASS: Symbol not found for ReadonlyArray<cesium/engine/Cartesian3>?? = definedExternally): ERROR CLASS: Symbol not found for ReadonlyArray<cesium/engine/Cartesian3>(source)
Returns an array of Cartesian3 positions given an array of longitude, latitude and height values where longitude and latitude are given in radians.
const positions = Cartesian3.fromRadiansArrayHeights([-2.007, 0.645, 100000.0, -1.867, .575, 150000.0]);
Content copied to clipboard
Return
The array of positions.
Parameters
coordinates
A list of longitude, latitude and height values. Values alternate longitude, latitude, height, longitude, latitude, height....
ellipsoid
The ellipsoid on which the position lies. Default value - Ellipsoid.default
result
An array of Cartesian3 objects to store the result.