Google map api 的当前位置在某些环境中不起作用。我们可以使用任何其他服务来获取当前的地理位置
问问题
2230 次
1 回答
0
您可以为此使用 Html5。
请参见下面的示例:
JS)
<script type="text/javascript">
function showLocation(position) {
var latitude = position.coords.latitude;
var longitude = position.coords.longitude;
alert("Latitude : " + latitude + " Longitude: " + longitude);
}
function errorHandler(err) {
if(err.code == 1) {
alert("Error: Access is denied!");
}else if( err.code == 2) {
alert("Error: Position is unavailable!");
}
}
function getLocation(){
if(navigator.geolocation){
// timeout at 60000 milliseconds (60 seconds)
var options = {timeout:60000};
navigator.geolocation.getCurrentPosition(showLocation,
errorHandler,
options);
}else{
alert("Sorry, browser does not support geolocation!");
}
}
</script>
调用函数的 HTML 按钮
<form>
<input type="button" onclick="getLocation();" value="Get Location"/>
</form>
于 2013-03-01T08:38:33.883 回答