我正在尝试在我的Google Maps api get请求中插入一个表示用户当前位置的变量。如果我在其中对纬度和经度进行硬编码,则我的链接将可用,但是我不知道正确的语法,甚至无法编码该语法中的变量来始终保持用户在应用程序中的当前位置。
这是我到目前为止所拥有的:
https://i.imgur.com/ApcYgxZ.png?1
$.get("https://cors- anywhere.herokuapp.com/https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=" + pos.lat + pos.lng + "&radius=1500&type=park&keyword=basketball%20court&key=MYAPIKEY")
.then(function(data){
console.log(data)
})
.catch(function(error){
console.log(error)
})
我需要在pos.lat和pos.lng中放置某种变量。谢谢。