JSON で Google Places API から場所のリストを取得しようとしています。AJAX リクエストを送信しています。
GET リクエストは正しいパラメーターを送信し、200 OK 成功メッセージを受信しますが、応答はありません (firebug による)。
JSON で場所のリストを取得する方法や、JSONP を JSON に変換する方法を知っていますか?
photos.js
$.ajax({
type: 'GET',
url:'https://maps.googleapis.com/maps/api/place/search/json',
dataType: 'json',
data: {
'location' : data.location.latitude+","+data.location.longitude,
'radius' : 500,
'key' : "mykeyhere",
'sensor' : "false",
'keyword' : "hotel"
},
success: function(hotel){
console.log(hotel);
}
});
dataType を jsonp に変更してみましたが、すべてのリストで応答を取得できましたが、"html_attributions" : []
JSON を予期しているためエラーが発生します。応答はhttps://developers.google.com/places/documentation/に記載されているとおりです検索しますが、認識しないfirebugエラーが発生しますhtml_attributions