[Google Maps API v3] Re: Extra padding to the viewport?

2011-12-09 Thread Keir
Is it possible to add an event listener to the marker so that it recentres the map when you click on it - to move the whole marker and InfoWindow to the right and lower on the map? google.maps.event.addListener(marker, 'click', function() map.setCenter(foobar); }); On Dec 8, 6:53 pm,

[Google Maps API v3] Re: convertion between zoom and fov values

2011-11-05 Thread Keir
I didn't notice that when I created the wizard. I was planning to improve it - but then I found someone had created a better one. This one seems to have addressed the fov issue. http://www.progettaremappeonline.it/blog/stviewgen/stvwimagen-en.html Keir On Nov 4, 1:44 pm, JD Gauchat macr

[Google Maps API v3] Re: external link in infoWindow or onClick of a marker on a map

2010-08-24 Thread Keir
Both should be possible. Just change the click event on the marker. For example this would redirect the browser to Google.com google.maps.event.addListener(marker, 'click', function() { window.location = http://www.google.com/; }); On Aug 23, 7:34 pm, camfam brian.cam...@gmail.com