所以我做了一点环顾四周,找不到任何真正回答我想要做的事,因此我发帖了!
我的总体目标主要是让页面读取用户位置,然后根据它们的位置运行代码。具体来说,我有一个facebook签入脚本,允许用户签到他们是否在特定的位置。
问题是有问题的位置有点大,所以手动放入位置的坐标不起作用。我现在坚持的是,是否有可能告诉JS采取位置的硬编码经度和纬度但是给出坐标周围的半径(比如说200米),所以当用户输入坐标的200m半径时代码激活。
有没有人有任何想法?
到目前为止,这是我的代码。
jQuery(window).ready(function(){
initiate_geolocation();
});
function initiate_geolocation() {
navigator.geolocation.getCurrentPosition(handle_geolocation_query,handle_errors);
}
function handle_errors(error)
{
switch(error.code)
{
case error.PERMISSION_DENIED: alert("user did not share geolocation data");
break;
case error.POSITION_UNAVAILABLE: alert("could not detect current position");
break;
case error.TIMEOUT: alert("retrieving position timed out");
break;
default: alert("unknown error");
break;
}
}
function handle_geolocation_query(position){
var lat = position.coords.latitude;
var long = position.coords.longitude;
//these are for testing purposes
alert('Your latitude is '+lat+' and longitude is '+long);
if (lat == 0 && long == 0) {alert('It works!');};
}
答案 0 :(得分:9)
我要做的是使用setInterval创建一个poll函数,每1到10秒执行一次,具体取决于对测试最有意义的内容,以及测试距离。这是测试两个经度/纬度之间距离的函数:
function CalculateDistance(lat1, long1, lat2, long2) {
// Translate to a distance
var distance =
Math.sin(lat1 * Math.PI) * Math.sin(lat2 * Math.PI) +
Math.cos(lat1 * Math.PI) * Math.cos(lat2 * Math.PI) * Math.cos(Math.abs(long1 - long2) * Math.PI);
// Return the distance in miles
//return Math.acos(distance) * 3958.754;
// Return the distance in meters
return Math.acos(distance) * 6370981.162;
} // CalculateDistance
你的间隔函数看起来像:
// The target longitude and latitude
var targetlong = 23.456;
var targetlat = 21.098;
// Start an interval every 1s
var OurInterval = setInterval(OnInterval, 1000);
// Call this on an interval
function OnInterval() {
// Get the coordinates they are at
var lat = position.coords.latitude;
var long = position.coords.longitude;
var distance = CalculateDistance(targetlat, targetlong, lat, long);
// Is it in the right distance? (200m)
if (distance <= 200) {
// Stop the interval
stopInterval(OurInterval);
// Do something here cause they reached their destination
}
}