@nativescript-community/ui-carto
Version:
NativeScript plugin for CARTO Mobile SDK
12 lines (11 loc) • 810 B
TypeScript
import { MapPos } from '../core';
import { ProjectionOptions } from '.';
import { BaseProjection } from './index.common';
export declare abstract class ProjectionClass<T extends com.carto.projections.Projection, U extends ProjectionOptions> extends BaseProjection<T, U> {
fromWgs84(position: MapPos): import("../core").GenericMapPos<import("../core").DefaultLatLonKeys>;
toWgs84(position: MapPos): import("../core").GenericMapPos<import("../core").DefaultLatLonKeys>;
fromLatLong(latitude: any, longitude: any): import("../core").GenericMapPos<import("../core").DefaultLatLonKeys>;
toLatLong(x: any, y: any): import("../core").GenericMapPos<import("../core").DefaultLatLonKeys>;
}
export declare class Projection extends ProjectionClass<com.carto.projections.Projection, ProjectionOptions> {
}