vue-yandex-map
vue-yandex-map copied to clipboard
Задать лимит зума
Как можно задать лимит на зум, чтобы при скролле карты при приближении, зум остановился и больше не работал?
Как можно получить события скролла зума при клике на кнопки зума?
<yandex-map
v-if="coords.length"
ref="map"
:zoom="zoom"
:coords="[coords[coordsIndex].latitude, coords[coordsIndex].longitude]"
:options="{ suppressMapOpenBlock: true }"
:settings="mapSettings"
:controls="['zoomControl']"
class="choose-warehouse-modal__map ml-3 mt-3"
>
<ymap-marker
v-for="(coordinate, index) in coords"
:key="coordinate.id"
:icon="getIcon(coordinate.id)"
:coords="[coordinate.latitude, coordinate.longitude]"
:marker-id="coordinate.id"
/>
</yandex-map>