vue-yandex-maps
Version:
Yandex Maps 3.0 components library for VueJS.
9 lines (8 loc) • 689 B
TypeScript
import { ArgsType } from '../types';
import { WebMercator as _WebMercator } from '@yandex/ymaps3-web-mercator-projection';
import { Cartesian as _Cartesian } from '@yandex/ymaps3-cartesian-projection';
import type * as WorldUtils from '@yandex/ymaps3-world-utils';
export declare function worldToPixels(...args: ArgsType<typeof WorldUtils.worldToPixels>): Promise<ReturnType<typeof WorldUtils.worldToPixels>>;
export declare function pixelsToWorld(...args: ArgsType<typeof WorldUtils.pixelsToWorld>): Promise<ReturnType<typeof WorldUtils.pixelsToWorld>>;
export declare function WebMercator(): Promise<typeof _WebMercator>;
export declare function Cartesian(): Promise<typeof _Cartesian>;