phillipbentonkelly
3/3/2014 - 9:17 PM

From https://developers.google.com/maps/documentation/javascript/places

var map;var service;var infowindow;function initialize() {  var pyrmont = new google.maps.LatLng(-33.8665433,151.1956316);  map = new google.maps.Map(document.getElementById('map'), {      center: pyrmont,      zoom: 15    });  var request = {    location: pyrmont,    radius: '500',    types: ['store']  };  service = new google.maps.places.PlacesService(map);  service.nearbySearch(request, callback);}function callback(results, status) {  if (status == google.maps.places.PlacesServiceStatus.OK) {    for (var i = 0; i < results.length; i++) {      var place = results[i];      createMarker(results[i]);    }  }}