The Google Maps allow a user to add and group places in My Places. I would like to access the locations in a user's My Places programmatically instead of manually download the KML file. I did some search but could not find much helpful documentation or discussion on this topic. Apparently this is possible because this iOS app seems to be able to access it. The question is what Google Maps API or web services can provide this information?
Asked
Active
Viewed 3,733 times
1 Answers
-1
No one answers this question. I found how to do it after a few days of search.
- Use google client login to get access_token for scope https://maps.google.com/maps/feeds/. Search Using OAuth 2.0 for Client-side Applications for documentation.
- Access google maps data with the access token at https://maps.google.com/maps/feeds/maps/default/full?access_token=xxx.

user1594723
- 55
- 1
- 4
-
2Can you give more detail? I don't know how to do, there is no Maps feed in Google OAuth playground. Thanks. – Tien Do Nov 02 '12 at 04:45