import type {YMapLocationRequest, LngLat} from '@yandex/ymaps3-types'; export const LOCATION: YMapLocationRequest = { center: [34.099575, 44.950594], // starting position [lng, lat] zoom: 11 // starting zoom }; // Array containing GeoJSON data for markers export const markersGeoJsonSource = [ { index: 16, coordinates: [34.099575, 44.950594] as LngLat, title: 'ООО Крымская Экспертиза', subtitle: '', color: '#454cf7', }, ];