import type {YMapLocationRequest, LngLat} from '@yandex/ymaps3-types'; export const LOCATION: YMapLocationRequest = { center: [34.305465, 45.057880], // starting position [lng, lat] zoom: 8 // starting zoom }; // Array containing GeoJSON data for markers export const markersGeoJsonSource = [ { index: 541, coordinates: [34.090607, 44.937160] as LngLat, title: 'ООО "Солнечный город"', subtitle: '', color: '#454cf7', }, ];