Open
Description
infoWindow: function(markerInfo){
console.log("Goes into infoWindow");
var longlat = markerInfo.lat+","+markerInfo.lng;
$.ajax({
url: 'https://maps.googleapis.com/maps/api/place/nearbysearch/json?location='+longlat+'&key=AIzaSyBbE0GuwRIVc4BAThO8FQZCOMRZ5EvGm0s',
success: function(res) {
console.log("Successes one time:");
console.log(res);
$.ajax({
url: 'https://maps.googleapis.com/maps/api/place/details/json?placeid='+res.place_id+'&key=AIzaSyBbE0GuwRIVc4BAThO8FQZCOMRZ5EvGm0s',
success: function(res) {
console.log("Success twice");
$('#info').html();
}
})
}
})
},
Metadata
Metadata
Assignees
Labels
No labels