[Vuejs]-How to make Google Map reactive?

0👍

You can watch for a change in the coordinates or zoom props.

https://v2.vuejs.org/v2/guide/computed.html#Watchers

I’m not familiar with the google maps API, but if its expensive (or breaks) when constantly rebound to the same element, you could consider storing the instance in a field of your component and using whatever API methods are available to programmatically change the zoom and coordinates.

Leave a comment