0

我正在使用 google API 来检测客户端位置,但它总是向我显示“Google Loader 未检测到您的位置”。

我需要找到客户所在地的国家代码,但它对我不起作用。

    <script src="http://www.google.com/jsapi" language="javascript"></script>
    <script language="javascript">
     if (google.loader.ClientLocation != null) {
       document.write("Your Location Is: " + google.loader.ClientLocation.address.country_code);
      } else {
       document.write("Your Location Was Not Detected By Google Loader");
        }
        </script>
4

2 回答 2

0

当 Google 无法对您的 IP 地址进行地理定位时,ClientLocation 对象返回 null。发生这种情况的原因有很多,其中之一是 API 无法解析您的 IP 地址。

也许您可以尝试其他解决方案,例如

http://html5demos.com/geo

或要求您的服务器执行此操作。

于 2012-09-20T05:53:02.370 回答
0

尝试这个:

<script type="text/javascript">
  if(google.loader.ClientLocation) {
    var latitude = google.loader.ClientLocation.latitude;
    var longtitude = google.loader.ClientLocation.longitude;
    var city = google.loader.ClientLocation.address.city;
    var region = google.loader.ClientLocation.address.region;
    var country = google.loader.ClientLocation.address.country;
    var countrycode = google.loader.ClientLocation.address.country_code;    
  } else {
    // ClientLocation not found or not populated
    // so perform error handling
  }
</script>

改变

if (google.loader.ClientLocation != null) {

if (google.loader.ClientLocation){

希望这可以帮助。

于 2012-09-20T06:00:20.613 回答