Foursquare API and Google maps using Python -


i want plot foursquare users check ins listed longitudes , latitudes on map .. tried plot them using venus functions not displayed. why? , if want connect google maps, how ??

1) check-ins foursquare

you can latitude/longitude coordinates user checkins endpoint: https://developer.foursquare.com/docs/users/checkins

from response you'll need iterate through venues get:

response.checkins.items[i].venue.location.lat

response.checkins.items[i].venue.location.long

2) plot points on map

if you're making in google apps, can populate spreadsheet using coordinates (and else) got, , produce map. there's example instructions here: http://gmaps-samples.googlecode.com/svn/trunk/spreadsheetsmapwizard/makecustommap.htm


Comments

Popular posts from this blog

What can cause "Required Package 'IndyCore' not found" when compiling a Delphi 2010 project? -

Change the color of an oval at click in Java AWT -