首页 > 编程 > HTML > 正文

HTML5地理定-位实例

2020-03-24 15:48:20
字体:
来源:转载
供稿:网友

html5 获取坐标代码如下:

代码如下:<!DOCTYPE HTML>

<html>

<head>

<title>test1.html</title>



<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

<meta http-equiv="description" content="this is my page">

<meta http-equiv="content-type" content="text/html; charset=UTF-8">

<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

</head>

<body>

<div id="demo">点击这个按钮,获得您的坐标:</div>

<button onclick="getLocation()">试一下</button>

<script type="text/javascript">



var x=document.getElementById("demo");

function getLocation(){

if(navigator.geolocation){

navigator.geolocation.getCurrentPosition(showPosition);

}else{

x.innerHTML="浏览器不支持!!!";

}

}

function showPosition(position){

x.innerHTML="Latitude: "+position.coords.latitude+"<br/>Longitude: "+position.coords.longitude;

}

</script>



</body>

</html>

经测试,在IE9 、firefox、chrome、opera上都可以成功获取到坐标位置,但是saf

顺口溜[www.62-6.com/1/marenbaodian/]ari 5.x上却不能返回坐标,暂时木有找到原因。成功的案例里头,chrome响应的速度最快,其次是opera,然后是IE9,firefox居然是最慢的。个人表示对firefox很失望,不过chrome倒是越来棒了。

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表