導航:首頁 > 編程語言 > html5指定地理位置代碼

html5指定地理位置代碼

發布時間:2024-09-27 05:19:56

『壹』 html5怎麼實現調用gps獲取地理位置具體代碼

1、網路復直接搜【百制度地圖調用】,點擊出現的第二個網站,進入這個網站即可。

『貳』 html5 導航路線效果

html5導航路線效果:

調用核心代碼:

<script type="text/javascript">
//默認地理位置設置為上海市浦東新區
var x=121.48789949,y=31.24916171;
window.onload = function() {
if(navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
document.getElementById("status").innerHTML = "HTML5 Geolocation is supported in your browser.";
// 網路地圖API功能
var map = new BMap.Map("container");
var point = new BMap.Point(x,y);
map.centerAndZoom(point,12);

var geolocation = new BMap.Geolocation();
geolocation.getCurrentPosition(function(r){
if(this.getStatus() == BMAP_STATUS_SUCCESS){
var mk = new BMap.Marker(r.point);
map.addOverlay(mk);
map.panTo(r.point);
}
else {
alert('failed'+this.getStatus());
}
},{enableHighAccuracy: true})
return;
}
alert("當前的瀏覽器不支持獲取地理位置!");
};
function showPosition(position){
x=position.coords.latitude;
y=position.coords.longitude;
}
</script>
運行效果如下:

閱讀全文

與html5指定地理位置代碼相關的資料

熱點內容
香港有蘋果翻新機嗎 瀏覽:15
c讀取文件的行數 瀏覽:59
重慶少兒編程哪裡好 瀏覽:568
nes游戲在哪個文件夾里 瀏覽:643
ps怎麼剪貼到別的文件 瀏覽:352
如何導出文件 瀏覽:595
apk中的xml文件 瀏覽:239
umeng打包工具 瀏覽:765
g76錐度牙怎麼編程 瀏覽:430
win10企業版關機很慢 瀏覽:163
微信短視頻是保存在哪個文件夾 瀏覽:985
win10列印機設置紙張大小設置 瀏覽:427
衛星測控數據有哪些 瀏覽:451
格式工廠330教程 瀏覽:421
童美編程課怎麼樣 瀏覽:40
網頁代碼調試器 瀏覽:54
讀取文件string 瀏覽:500
ug自動編程軟體怎麼畫數控圖 瀏覽:920
什麼網站可以介紹主機 瀏覽:340
移動簡訊查詢代碼 瀏覽:192

友情鏈接