Questions tagged [vue2-google-maps]

Google maps component for vue with 2-way data binding

54 questions
1
vote
1 answer

How to pass the arrays to another vue component and apply to a variable

I want to pass the arrays in another component and assigned it to a variable MainList.vue //vue js code this.addresses.forEach(a => { Vue.$geocoder.setDefaultMode('address'); // this…
boldsinas101
  • 300
  • 2
  • 5
  • 22
1
vote
1 answer

How to set gmap-info-window of vue2-google-map that will place in the bottom of the marker.?

I have a marker with two info windows but they are same placed above the marker. I want to "oyeee" info window must be in the bottom side. this is my code:
AbingPj
  • 619
  • 8
  • 18
1
vote
0 answers

How to dynamically delete google maps?

The question arose as to how to dynamically delete google maps, and/or unsubscribe from the event of creating (loading) the map. I use vue2-google-maps. main.js: const { lang } = localStorage.getItem('lang') || 'en'; Vue.use(VueGoogleMaps, { load:…
KolisbikBoh
  • 85
  • 2
  • 10
1
vote
1 answer

Draw route between two points in Vue

Code below working fine and draws a polyline between two points, but what I need is path, so searching how to draw route between these points instead of polyline using vue2-google-maps package?