import type {YMapLocationRequest, LngLat} from '@yandex/ymaps3-types';

export const LOCATION: YMapLocationRequest = {
    center: [44.55951034112194,48.5263097632868], // starting position [lng, lat]
    zoom: 17 // starting zoom
};
// Array containing data for markers
export const markerProps = [
    {
        coordinates: [44.558210092124206,48.52611669231364] as LngLat,
        iconSrc:
            'https://yastatic.net/s3/front-maps-static/maps-front-jsapi-3/examples/images/marker-custom-icon/yellow-capybara.png',
        message: "I'm yellow capybara!"
    }
];

 
// [48.5263097632868,44.55951034112194]