Google Places API への AJAX リクエストを取得できません。コード:
$.ajax({
type: 'GET',
url:'http://maps.googleapis.com/maps/api/place/textsearch/json?',
dataType: 'json',
data: {
'query' : "restaurants+in+" + cityname,
'key' : MyPublicKey,
'sensor' : "false"
},
success: function(restaurans) {
console.log(restaurants);
}
});
私は何を間違っていますか?