WilliamDASILVA / nuxt-google-maps-module

Inject Google Maps script
MIT License
22 stars 8 forks source link

simple example to show a map #9

Open digitalit opened 5 years ago

digitalit commented 5 years ago

Can anyone please provide an simple example to show a map?

Wickeey commented 5 years ago
  mounted() {
    const map = new this.$google.maps.Map(document.getElementById("map"), {
      center: { lat: -34.397, lng: 150.644 },
      zoom: 8
    });
  }