I\'m stuck trying to figure out a little bit of JS :( I have a google map
var myCenter=new google.maps.LatLng(53, -1.33); function initialize() { var mapPro
Not sure where your content is but you would need to do the following...
var yourContent = new google.maps.InfoWindow({ content: 'blah blah' }); google.maps.event.addListener(marker, 'click', function() { yourContent.open(map,marker); });