Reputation: 4841
Is there a way to programmatically grab the details about the markers that are shown on a Google Map that you didn't generate? E.g. http://goo.gl/maps/PkcTt
Upvotes: 1
Views: 1474
Reputation: 2675
Hovering your cursor over the marker should suffice.
EDIT:
Try out the marker reference in the google api: http://developers.google.com/maps/documentation/javascript/reference
Upvotes: 1
Reputation: 4789
Based on the example you have given , you seem to be wanting to programatically get the details of places or businesses shown by google. You can use the places api for this, but you need to initiate the search by inputing the location and types of places to the api , to get the details in return.
Upvotes: 1