How can I get list of Facebook places inside bounds
问题 I need to receive list of facebook places inside of given bounds (defined by NE and WS coordinates) I call the following fql.query from javascript application: FB.api({ method: "fql.query", query: "SELECT name,description,geometry,latitude,longitude,checkin_count,display_subtext FROM place WHERE latitude < '" + bounds.getNorthEast().lat() + "' and longitude < '" + bounds.getNorthEast().lng() + "' and latitude > '" + bounds.getSouthWest().lat() + "' and longitude > '" + bounds.getSouthWest()