谷歌分析能够使用 Javascript 库找到访问者的位置。这如何用 Javascript 来完成?
问问题
2371 次
2 回答
2
navigator.geolocation 对象是您向用户代理询问其位置的方式。根据 UA 的设置,这可能会或可能不会提示用户允许/拒绝发送数据。此外,地理位置数据本身的精度可能非常多变(不过,它们会给您一个余量或误差,因此您可以将其考虑在内)。
if (navigator.geolocation) {
navigator.geolocation.getPosition(
successFunction,
failureFunction
);
} else {
noGeolocationFunction();
};
还有一个 watchPosition 方法。两者都是异步的,因此您将成功/失败函数传递给它来处理返回的对象。
于 2012-12-26T23:12:24.460 回答
1
谷歌有一个用于查询访问者位置的 API。使用 javascript 和 Google API 自动查找网络访问者的位置
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Get web visitor's location</title>
<meta name="robots" value="none" />
</head>
<body>
<div id="yourinfo"></div>
<script type="text/javascript" src="http://www.google.com/jsapi?key=[apikey]"></script>
<script type="text/javascript">
if(google.loader.ClientLocation)
{
visitor_lat = google.loader.ClientLocation.latitude;
visitor_lon = google.loader.ClientLocation.longitude;
visitor_city = google.loader.ClientLocation.address.city;
visitor_region = google.loader.ClientLocation.address.region;
visitor_country = google.loader.ClientLocation.address.country;
visitor_countrycode = google.loader.ClientLocation.address.country_code;
document.getElementById('yourinfo').innerHTML = '<p>Lat/Lon: ' + visitor_lat + ' / ' + visitor_lon + '</p><p>Location: ' + visitor_city + ', ' + visitor_region + ', ' + visitor_country + ' (' + visitor_countrycode + ')</p>';
}
else
{
document.getElementById('yourinfo').innerHTML = '<p>Whoops!</p>';
}
</script>
</body>
</html>
于 2012-12-26T23:24:02.900 回答