如果想开发像zomoto这样的wordpress网站我想知道如何在网站页面上设置用户位置检测器,以便用户可以根据他们选择的地点获得商店 选择商店和食物后,应该显示从餐厅到所选地点的45分钟或60分钟的交货时间
答案 0 :(得分:0)
您可以使用getCurrentPosition()
方法获取用户的位置。例如:
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(userPosition);
} else {
alert("Geolocation is not supported by this browser.");
}
}
function userPosition(position) {
console.log(position)
}
或者如果您想使用php
,请参阅Get user's current location in PHP