We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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(); } }) } }) },
The text was updated successfully, but these errors were encountered:
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=-33.8670522,151.1957362&radius=500&types=food&name=cruise&key=AIzaSyA3g1SobkduGY05XnI4Ujb6UlpLLqA2GaQ
Sorry, something went wrong.
No branches or pull requests
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({
The text was updated successfully, but these errors were encountered: