yandex-maps-unofficial / vue-yandex-map

Yandex Maps Component for VueJS
MIT License
359 stars 103 forks source link

Как можно добавить маршрут в Vue 3? #476

Closed hellencheetah closed 12 months ago

hellencheetah commented 12 months ago

Я пробую использовать глобальный instance ymaps, но в инстансе нет geoObjects.

window.ymaps.route([ ['55.7961', '37.7048'], ['55.8337', '37.7644']], {mapStateAutoApply: true })
  .then(function (route) {       
        window.ymaps.geoObjects.add(route); // Как добавить роуте?
  }, 
  function (error) {
        alert('ошибка: ' + error.message);
 });