我正在使用 JavaScript 函数 (GeoLocation) 来获取访问者的当前位置。我只是一个 Javascript 副本和粘贴者,所以如果我的问题的解决方案很明显,我深表歉意。
访问者被要求单击一个按钮来获取他们的位置,此时 GeoLocation 会返回该纬度和经度以及一张地图 - 我相信你知道它是如何工作的 :)
但是,我还想返回另一个元素(确认按钮 - HTML 表单按钮)和完成的 GeoLocation - 而不是之前。
以下是我页面中的基本代码。谁能解释如何在 GeoLocation 函数返回结果之前隐藏表单(id = 'form)?
<button onclick="getLocation()" id = 'getloc'>Get your location now</button>
<div id="map_canvas"></div>
<form id = 'confirm'>
<input type = 'hidden' id = 'latitude' value = 'latitude'/>
<input type = 'hidden' id = 'longitude' value = 'longitude'/>
<input type = 'submit' value = 'Confirm Your Location'/>
</form>
<script src="//maps.googleapis.com/maps/api/js?v=3.exp&sensor=true"></script>
<script>
function getLocation(){
if(!!navigator.geolocation) {
var map;
var mapOptions = {
zoom: 13,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('google_canvas'), mapOptions);
navigator.geolocation.getCurrentPosition(function(position) {
var geolocate = new google.maps.LatLng(position.coords.latitude, position.coords.longitude),latitude=document.getElementById("latitude"),longitude=document.getElementById("longitude");;
var infowindow = new google.maps.InfoWindow({
map: map,
position: geolocate,
content:
'<h1>Your Current Location</h1>' +
'<h2>Latitude: ' + position.coords.latitude + '</h2>' +
'<h2>Longitude: ' + position.coords.longitude + '</h2>'
});
map.setCenter(geolocate);
latitude.value = position.coords.latitude;
longitude.value = position.coords.longitude;
});
} else { document.getElementById('map_canvas').innerHTML = 'No Geolocation Support.';
}
};
</script>