Closed MrNapcae closed 4 years ago
@MrNapcae привет. Нужно вызвать метод getZoom у инстанса карты:
const getZoom = () => {
if (mapRef.current) {
console.log(mapRef.current.getZoom());
}
}
<Map
...
instanceRef={(ref) => {
if (ref) mapRef.current = ref;
}}
>
Добрый день, не могу получить изменения параметра zoom (в yandex api есть метод getZoom (https://tech.yandex.ru/maps/archive/doc/jsapi/1.x/dg/concepts/map-parameters-docpage/)) как реализовать чтобы получить значение? Через withYMaps не получилось....