// Утилиты для преобразования координат const CoordUtils = { // GeoJSON -> Yandex Maps geoJsonToYandex: function(coord) { if (!coord) return coord; if (Array.isArray(coord) && typeof coord[0] === 'number') { return [coord[1], coord[0]]; } if (Array.isArray(coord)) { return coord.map(c => this.geoJsonToYandex(c)); } return coord; }, // Yandex Maps -> GeoJSON yandexToGeoJson: function(coord) { if (!coord) return coord; if (Array.isArray(coord) && typeof coord[0] === 'number') { return [coord[1], coord[0]]; } if (Array.isArray(coord)) { return coord.map(c => this.yandexToGeoJson(c)); } return coord; } };