在请求附近的地方api时,它给了我cors错误,然后我在请求中添加了JSONP
$.ajax(
{
url:"https://maps.googleapis.com/maps/api/place/nearbysearch/json?
location="+city_lat+","+city_lon+"&radius=500&type=restaurant&key=********",
type: "GET",
dataType: 'jsonp',
cache: false,
success: function(response){
alert(response);
}
});
以上代码我以前用谷歌地图api
response error:- {
"html_attributions" : [],
"results" : [
{
"geometry" : {
"location" : {
"lat" : 37.1294494,
"lng" : -84.0838904
},
"viewport" : {
"northeast" : {
"lat" : 37.1307232802915,
"lng" : -84.0826656697085
},
"southwest" : {
"lat" : 37.1280253197085,
"lng" : -84.08536363029151
}
}
},
我第一次使用ajax请求它给了我cors错误因此我使用了jsonp.so我应该如何在api附近请求谷歌地图。