yandex-maps-unofficial / vue-yandex-map

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

Карта не загружается #320

Closed Voolshara closed 2 years ago

Voolshara commented 2 years ago

Я использую этот код из примера на Vue 2

<template>
  <yandex-map :coords="coords" :zoom="10" @click="onClick"></yandex-map>
</template>

<script>
import { yandexMap } from "vue-yandex-maps";
export default {
  components: {
    yandexMap,
  },
  data: () => ({
    coords: [54.82896654088406, 39.831893822753904],
  }),
  methods: {
    onClick(e) {
      this.coords = e.get("coords");
    },
  },
};
</script>

Но карта не загружается

image

lucasudar commented 2 years ago

@Voolshara, проинспектируй элемент карты, возможно тебе нужно задать height

PNKBizz commented 2 years ago

@lucasudar прав. Проверьте стили

Voolshara commented 2 years ago

Спасибо вроде заработало