Does anyone know how to close an info window if a user clicks on another marker? In the Google documentation, you open infowindows manually, but in nuxt-gmap it's like this:
<GMap :key="mapRender"
ref="gMap"
language="en"
:center="{lat: 36.266114, lng: 29.413674}"
:options="{mapTypeControl: false, zoomControl:true, scrollwheel:true,
scaleControl:false, fullscreenControl:false, styles: mapStyle}"
:zoom="12"
>
<!-- :cluster="{options: {styles: clusterStyle}}" -->
<GMapMarker
v-for="location in locations" :key="location"
>
<GMapInfoWindow>
<code>
<div>
info
</div>
</code>
</GMapInfoWindow>
</GMapMarker>
<GMapCircle :options="circleOptions"/>
</GMap>