HTML5 地理位置 API 让你可以与最爱的网站分享你的位置信息。JavaScript 可以获取你的经度和纬度,并将之发送到后端 web 服务器,以实现不同位置之间的精妙联系,例如发现当地商家或者在地图上标注你的位置。示例让我们看看如何获取当前位置 − function showLocation(position) { var latitude = position.coords.latitude; var longitude = position.coords.longitude; alert("纬度 : " + latitude + " ... 了解更多
要在谷歌地图上显示 HTML5 地理位置,请使用下列代码 −var lat = position.coords.latitude; var longitude = position.coords.longitude; var accuracy = position.coords.accuracy; var center = new google.maps.LatLng(lat, longitude); var a = new google.maps.Marker({ position: center map: icon: }); var mySphere = new google.maps.Circle({ center: centerPosition, radius: accuracy, map: fillColor: fillOpacity: strokeColor: strokeOpacity: }); map.fitBounds(mySphere.getBounds());