我正在尝试用地理位置做一些事情。我想将一个变量中的地理位置纬度和经度作为数组取回。它不起作用。我认为代码中的第一行是问题所在。是否有可能获得这样的价值(有回报)?
startingPoint = navigator.geolocation.getCurrentPosition(onGeoSuccess);
function onGeoSuccess(position) {
start['lat'] = position.coords.latitude;
start['lng'] = position.coords.longitude;
return start;
}
有更好的解决方案吗?我不想在 onGeoSuccess 中执行其他代码,我想返回值。