I know I can make a tooltip that shows “SOMETHING” like this:
marker = new google.maps.Marker({ position: new google.maps.LatLng(lat,lon), map: map, draggable: true, title:"SOMETHING", icon: '/public/markers-map/male-2.png' });
I want to do the same with a circle, but title does not work.
new google.maps.Circle({ center: new google.maps.LatLng(lat,lon), radius: 20, strokeColor: "blue", strokeOpacity: 1, title:"SOMETHING", strokeWeight: 1, fillColor: "blue", fillOpacity: 1, map: map });
He prints a circle, but does not show the message "SOMETHING".
How can i do this? is there any other property to get it?
Thanks in advance.
google-maps tooltip google-maps-api-3
Andres
source share