yandex-maps-unofficial / vue-yandex-maps

Yandex Maps 3.0 components library for VueJS.
https://yandex-maps-unofficial.github.io/vue-yandex-maps/
MIT License
75 stars 9 forks source link

Не работает balloon если ставить кастомный iconLayout #40

Closed twentytwo777 closed 1 year ago

twentytwo777 commented 1 year ago

Возможно я что-то не понял, но не могли бы вы показать как в таком случае вызвать balloon используя кастомный iconLayout Код:

<YandexMarker
      v-for="order in data.orders"

       :key="order.id"
       :marker-id="order.id"

       :coordinates="order.coords"

       :options="{
             iconLayout: ymaps.templateLayoutFactory.createClass(this.ordersTemplate(order))
       }"
>
<template #component>
      kiks
</template>
</YandexMarker>
twentytwo777 commented 1 year ago

Понял, в options надо было просто добавить:

iconShape: {
    type: 'Circle',
    coordinates: [25, 25],
    radius: 25
}