vue-yandex-maps
Version:
Yandex Maps 3.0 components library for VueJS.
10 lines (9 loc) • 426 B
TypeScript
import { LngLat, LngLatBounds } from '@yandex/ymaps3-types';
/**
* @note You must pass at least one array element in coordinates array
*/
export declare function getCenterFromCoords(coordinates: Array<LngLat | Readonly<LngLat>>): LngLat;
/**
* @note You must pass at least two array elements in coordinates array
*/
export declare function getBoundsFromCoords(coordinates: Array<LngLat | Readonly<LngLat>>): LngLatBounds;