Given the google map marker, how can I change the title?
var _marker = new google.maps.Marker({ position: aPoint, map: mmap, title:"old title" });
I tried
_marker.setTitle("new title");
and
_marker.title = "new title";
but the name is still the "old name"
David moorhouse
source share