Given a google maps marker how can I change the title ?
var _marker = new google.maps.Marker({
position: aPoint,
map: mmap,
title:"old title"
});
I have tried
_marker.setTitle("new title");
and
_marker.title = "new title";
but the title is still “old title”
Googling your question suggests this:
(original answer by Mike Williams of Blackpool, UK)