vue-cesium
Version:
Vue 3.x components for CesiumJS.
10 lines (9 loc) • 330 B
TypeScript
/**
* Turns the longitude / latitude in degrees into a human readable pretty UTM zone representation.
*/
declare function prettifyProjection(longitude: any, latitude: any, proj4Projection: any, proj4longlat: any, projectionUnits: any): {
utmZone: string;
north: any;
east: any;
};
export default prettifyProjection;