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

/* Rectangle bounded by bottom-left and top-right coordinates
Inside it, we generate the first bundle of clusterer points */
export const BOUNDS: LngLatBounds = [
    [30.2729, 59.9558],
    [30.4179, 59.9212]
];

export const LOCATION: YMapLocationRequest = {
    zoom: 11.6,
    center: [30.3951, 59.9393]
};
