Hi there,
I have been using the google maps api and i need to display from what i understand is a standard overlay that displays the Address and links of "how to arrive from here here", "to here", "apply zoom here" etc.
I got the overlay working like this but its not standard, i can customize it... is there a way to insert the standard overlay as explained above?
Here is my code for inserting a custom overlay
var marker = new GMarker(point); // Create the marker
map.addOverlay(marker); // And add it to the map
// And open some infowindow, with some HTML text in it
marker.openInfoWindowHtml(
'This is my test!!!, <strong>test </strong>'
);
Any help really appeciated
Thanks