function init() {
var myMap = new ymaps.Map('map', {
center: [55.74, 37.58],
zoom: 2,
controls: []
});
ymaps.borders.load('RU', {
lang: "en",
quality: 2
}).then(function (geojson) {
for (var i = 0; i < geojson.features.length; i++) {
var geoObject = new ymaps.GeoObject(geojson.features[i]);
myMap.geoObjects.add(geoObject);
}
});
}
ymaps.ready(init);