zoukankan      html  css  js  c++  java
  • 地理定位接口

    <style>
    .de{
    300px;
    height: 300px;
    border: 1px solid #ddd;
    }
    </style>
    </head>
    <body>
    <div id="demo" class="de"></div>
    <script>
    var x=document.getElementById("demo");
    function getLocation()
    {
    /*能力测试*/
    if (navigator.geolocation)
    {
    /*1.获取地理信息成功之后的回调
    * 2.获取地理信息失败之后的回调
    * 3.调整获取当前地进信息的方式*/
    //navigator.geolocation.getCurrentPosition(success,error,option);
    /*option:可以设置获取数据的方式
    * enableHighAccuracy:true/false:是否使用高精度
    * timeout:设置超时时间,单位ms
    * maximumAge:可以设置浏览器重新获取地理信息的时间间隔,单位是ms*/
    navigator.geolocation.getCurrentPosition(showPosition,showError,{
    /*enableHighAccuracy:true,
    timeout:3000*/
    });
    }
    else{
    x.innerHTML="Geolocation is not supported by this browser.";
    }
    }
    /*成功获取定位之后的回调*/
    /*如果获取地理信息成功,会将获取到的地理信息传递给成功之后的回调*/
    // position.coords.latitude 纬度
    // position.coords.longitude 经度
    // position.coords.accuracy 精度
    // position.coords.altitude 海拔高度
    function showPosition(position)
    {
    x.innerHTML="Latitude: " + position.coords.latitude +
    "<br />Longitude: " + position.coords.longitude;
    }
    /*获取定位失败之后的回调*/
    function showError(error)
    {
    switch(error.code)
    {
    case error.PERMISSION_DENIED:
    x.innerHTML="User denied the request for Geolocation."
    break;
    case error.POSITION_UNAVAILABLE:
    x.innerHTML="Location information is unavailable."
    break;
    case error.TIMEOUT:
    x.innerHTML="The request to get user location timed out."
    break;
    case error.UNKNOWN_ERROR:
    x.innerHTML="An unknown error occurred."
    break;
    }
    }
    getLocation();
    </script>
  • 相关阅读:
    重装Win10系统的非常简单的操作教程
    Python
    Delphi
    Libs
    Windows Server
    Windows Server
    Delphi
    Delphi
    Delphi
    Delphi
  • 原文地址:https://www.cnblogs.com/lujieting/p/10116729.html
Copyright © 2011-2022 走看看