使用Google Map的HTML5 jQuery GeoLocation

时间:2011-07-13 00:10:46

标签: html5 geolocation

您好我使用以下GeoLocation函数来获取访问者的位置

function success(position) {
  var s = document.querySelector('#location');

  if (s.className == 'success') {
    return;
  }

  s.value = "found you!";
  s.className = 'success';

  var mapcanvas = document.createElement('div');
  mapcanvas.id = 'mapcanvas';
  mapcanvas.style.height = '200px';
  mapcanvas.style.width = '380px';

  document.querySelector('article').appendChild(mapcanvas);

  var latlng = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
  var myOptions = {
    zoom: 15,
    center: latlng,
    mapTypeControl: false,
    navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
    mapTypeId: google.maps.MapTypeId.ROADMAP
  };
  var map = new google.maps.Map(document.getElementById("mapcanvas"), myOptions);

  var marker = new google.maps.Marker({
      position: latlng, 
      map: map, 
      title:"You are here!"
  });
}

function error(msg) {
  var s = document.querySelector('#status');
  s.innerHTML = typeof msg == 'string' ? msg : "failed";
  s.className = 'fail';

  // console.log(arguments);
}

if (navigator.geolocation) {
  navigator.geolocation.getCurrentPosition(success, error);
} else {
  error('not supported');
}

如你所见,它在字段中写下了“找到你了!”的价值。当过程成功时。

现在我需要的不是写“找到你了!”我需要写一下访客的位置。

因此,如果该成员在罗马,它将写“罗马,意大利”

我如何实现它?

感谢您的帮助!!!

1 个答案:

答案 0 :(得分:1)

您需要地理编码(或反向地理编码)。我在支持论坛上写了一篇简短的概述here。请参阅帖子末尾附近的链接。

更为复杂的示例:我的tutorial使用谷歌地图,jquery,标记和地理编码,包括从lat / lng coords获取完整地址的来源。