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:
<gmap-marker :position="toLocation" icon="http://maps.google.com/mapfiles/ms/icons/yellow-dot.png">
<gmap-info-window :opened="true"
:options="{
pixelOffset: { width: 0, height: 0 },
content: `<b>Destination Address <br>
${toLocation.lat} , ${toLocation.lng}</b>`,
}"
></gmap-info-window>
<gmap-info-window :opened="true"
:options="{
pixelOffset: { width: 0, height: 0 },
content: `<b>OYEEEEEEEEEEEEEEEEEEEEEEEEEE </b>`,
}"
></gmap-info-window>
</gmap-marker
output:
Anyone can help me how must be "oyeeeee" info window must be in the bottom side of the marker?