Archive for September, 2011

Marker and polygon tooltips in Google Maps v3

Thursday, September 15th, 2011

Before I get into the details, please note that this is a quick & dirty solution using google.maps.InfoWindow. No demo, sorry, but please add your improvements in the comments! Marker tooltip I start with the marker, as it is the simplest implementation: function attachMarkerInfoWindow(marker, html) { marker.infoWindow = new google.maps.InfoWindow({ content: html, }); google.maps.event.addListener(marker, 'mouseover', function() { marker.infoWindow.open(map,marker); }); google.maps.event.addListener(marker, 'mouseout', ...

Facebook Graph API limitations

Wednesday, September 7th, 2011

I have created a Facebook app for the flea market Facebook groups in my area. (Feel free to take a look at http://loppis.blekinge.it/) To read and manage posts I use the Facebook Graph API, but there are a number of limitations: My application supports deleting posts, but Facebook does not allow applications to ...