有没有办法从 App Maker 应用中的设备检索 GPS 位置?
我正在尝试为我的用户创建一个“签到”应用程序。我想在他们提交“签到”时检索他们的 GPS 位置(纬度、经度)。
有没有办法从 App Maker 应用中的设备检索 GPS 位置?
我正在尝试为我的用户创建一个“签到”应用程序。我想在他们提交“签到”时检索他们的 GPS 位置(纬度、经度)。
是的,您可以在 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);
});
}
用户必须同意披露他们的位置。