有没有办法从App Maker应用中的设备检索GPS位置?
我试图创建一个" checkin"我的用户的应用程序。我想在提交他们的" checkin"时检索他们的GPS位置(纬度,经度)。
答案 0 :(得分:4)
是的,您可以在Chrome浏览器上查看https://developers.google.com/web/fundamentals/native-hardware/user-location/了解所有详细信息。
if (navigator.geolocation){
navigator.geolocation.getCurrentPosition(function(position){
console.log(position.coords.latitude, position.coords.longitude);
});
}
用户必须同意披露他们的位置。