zoukankan      html  css  js  c++  java
  • Geolocation

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <script>

    //LBS : 基于地图信息的应用

    window.onload = function(){
    var oInput = document.getElementById('input1');
    var oT = document.getElementById('t1');

    var timer = null;

    oInput.onclick = function(){

    timer = navigator.geolocation.watchPosition(function(position){

    oT.value += '经度:' + position.coords.longitude+' ';
    oT.value += '纬度 :' + position.coords.latitude+' ';
    oT.value += '准确度 :' + position.coords.accuracy+' ';
    oT.value += '海拔 :' + position.coords.altitude+' ';
    oT.value += '海拔准确度 :' + position.coords.altitudeAcuracy+' ';
    oT.value += '行进方向 :' + position.coords.heading+' ';
    oT.value += '地面速度 :' + position.coords.speed+' ';
    oT.value += '时间戳:' + new Date(position.timestamp)+' ';


    },function(err){

    //err.code // 失败所对应的编号

    alert( err.code );

    navigator.geolocation.clearWatch(timer);

    },{
    enableHighAcuracy : true,
    timeout : 5000,
    maximumAge : 5000,
    frequency : 1000
    });

    };

    };

    </script>
    </head>

    <body>
    <input type="button" value="请求" id="input1" /><br />
    <textarea id="t1" style="400px; height:400px; border:1px #000 solid;">
    </textarea>
    </body>
    </html>

  • 相关阅读:
    dfs和bfs算法
    7种查找算法详解(转)
    C语言关键字:auto、static、register、const、volatile 、extern 总结 <转>
    存储类型auto,static,extern,register的区别 <转>
    C++中的内存重叠问题
    auto和register关键字
    监控linux系统的简易脚本
    Linux下面的IO模型
    python--爬虫基础
    网络协议面试
  • 原文地址:https://www.cnblogs.com/1246447850qqcom/p/4876063.html
Copyright © 2011-2022 走看看