project
fun project(cartographic: Cartographic, result: Cartesian3? = definedExternally): Cartesian3(source)
Projects a set of Cartographic coordinates, in radians, to map coordinates, in meters. X and Y are the longitude and latitude, respectively, multiplied by the maximum radius of the ellipsoid. Z is the unmodified height.
Return
The projected coordinates. If the result parameter is not undefined, the coordinates are copied there and that instance is returned. Otherwise, a new instance is created and returned.
Parameters
cartographic
The coordinates to project.
result
An instance into which to copy the result. If this parameter is undefined, a new instance is created and returned.