歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

利用HTML5定位功能實現在百度地圖上定位

利用HTML5定位功能,實現在百度地圖上定位

代碼如下:

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>HTML5定位</title>

    <script type="text/javascript" src="http://lib.sinaapp.com/js/jquery/1.7.2/jquery.min.js"></script>

  <script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=wqBXfIN3HkpM1AHKWujjCdsi"></script>

  <script type="text/javascript" src="http://developer.baidu.com/map/jsdemo/demo/convertor.js"></script>

    <style type="text/css">

    *{ margin: 0px; padding: 0px;}

  body{text-align: center;  height: 100%;overflow:hidden;}

  #allmap{ width: 100%;height: 100%; position: absolute;}

    </style>

</head>

<body>

    <div id="allmap"></div>

<script type="text/javascript">

 $(function(){

    if(supportsGeoLocation()){

        alert("你的浏覽器支持 GeoLocation.");

    }else{

        alert("不支持 GeoLocation.")

    }

  // 檢測浏覽器是否支持HTML5

              function supportsGeoLocation(){

                  return !!navigator.geolocation;

              } 

  // 單次位置請求執行的函數           

              function getLocation(){

                  navigator.geolocation.getCurrentPosition(mapIt,locationError);

              }

  //定位成功時,執行的函數

              function mapIt(position){

                var lon = position.coords.longitude;

                  var lat = position.coords.latitude;

                  // alert("您位置的經度是:"+lon+" 緯度是:"+lat);

                var map = new BMap.Map("allmap");

                var point = new BMap.Point(""+lon+"",""+lat+"");

                map.centerAndZoom(point,19);

                var gc = new BMap.Geocoder();

                      translateCallback = function (point){

                          var marker = new BMap.Marker(point);

                          map.addOverlay(marker);

                          map.setCenter(point);

                          gc.getLocation(point, function(rs){

                                var addComp = rs.addressComponents;

                                if(addComp.province!==addComp.city){

                                  var sContent =

                                  "<div><h4 style='margin:0 0 5px 0;padding:0.2em 0'>你當前的位置是:</h4>" +

                                  "<p style='margin:0;line-height:1.5;font-size:13px;text-indent:2em'>"+addComp.province + ", " + addComp.city + ", " + addComp.district + ", " + addComp.street + ", " + addComp.streetNumber+"</p>" +

                                  "</div>";}

                                else{

                                  var sContent =

                                  "<div><h4 style='margin:0 0 5px 0;padding:0.2em 0'>你當前的位置是:</h4>" +

                                  "<p style='margin:0;line-height:1.5;font-size:13px;text-indent:2em'>"+ addComp.city + ", " + addComp.district + ", " + addComp.street + ", " + addComp.streetNumber+"</p>" +

                                  "</div>";

                                }

                                var infoWindow = new BMap.InfoWindow(sContent);

                                map.openInfoWindow(infoWindow,point);

                          });

                      }                   

                  BMap.Convertor.translate(point,0,translateCallback);

            }

  // 定位失敗時,執行的函數

              function locationError(error)

              {

              switch(error.code)

                {

                case error.PERMISSION_DENIED:

                  alert("User denied the request for Geolocation.");

                  break;

                case error.POSITION_UNAVAILABLE:

                  alert("Location information is unavailable.");

                  break;

                case error.TIMEOUT:

                  alert("The request to get user location timed out.");

                  break;

                case error.UNKNOWN_ERROR:

                  alert("An unknown error occurred.");

                  break;

                }

              }

  // 頁面加載時執行getLocation函數

  window.onload = getLocation; 

        })

</script>

</body>

</html>

測試浏覽器:ie11定位成功率100%,Safari定位成功率97%。其它浏覽器暫時不行,HTML5獲取不了地理位置信息。

HTML5移動開發即學即用(雙色) PDF+源碼 http://www.linuxidc.com/Linux/2013-09/90351.htm

HTML5入門學習筆記 http://www.linuxidc.com/Linux/2013-09/90089.htm

HTML5移動Web開發筆記 http://www.linuxidc.com/Linux/2013-09/90088.htm

HTML5 開發中的本地存儲的安全風險 http://www.linuxidc.com/Linux/2013-06/86486.htm

《HTML5與CSS3權威指南》及相配套源碼 http://www.linuxidc.com/Linux/2013-02/79950.htm

關於 HTML5 令人激動的 10 項預測 http://www.linuxidc.com/Linux/2013-02/79917.htm

HTML5與CSS3實戰指南 PDF http://www.linuxidc.com/Linux/2013-02/79910.htm

Copyright © Linux教程網 All Rights Reserved