map.on('baselayerchange', function(e) {
if (e.name === 'Yandex Maps') {
map.options.crs = L.CRS.EPSG3395;
map.setZoom(10);
} else {
map.options.crs = L.CRS.EPSG3857;
map.setZoom(9);
}
});
map.on('baselayerchange', function(e) {
if (e.name === 'Yandex Maps') {
map.options.crs = L.CRS.EPSG3395;
} else {
map.options.crs = L.CRS.EPSG3857;
}
});
var yaMaps = L.tileLayer('http://vec01.maps.yandex.net/tiles?l=map&v=4.55.2&z={z}&x={x}&y={y}&scale=1&lang=ru_RU');