本來想用圖吧的API來做的弥锄,結(jié)果弄了下丧靡,在手機(jī)上弄不了。換用百度地圖了籽暇。温治。本功能個人覺得在很多地方用到,先記下來戒悠,省得每次都得翻地圖API文檔一點(diǎn)一點(diǎn)弄熬荆。
功能表現(xiàn)為: 地圖一開始打開就定位到你的附近(以百度地圖的瀏覽器定位為準(zhǔn)),地圖中心有一標(biāo)注绸狐,鼠標(biāo)拖去標(biāo)注結(jié)果后彈框顯示經(jīng)緯度卤恳,自己測試過在手機(jī)上也是可以拖動的
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
body, html, #allmap {
width: 100%;
height: 100%;
margin: 0;
font-family: "微軟雅黑";
}
#l-map {
height: 500px;
width: 100%;
}
#r-result {
width: 100%;
}
</style>
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=fjEOTea6oQGEcK1GSUHruG4efO9fccei"></script>
<title>設(shè)置點(diǎn)是否可拖拽</title>
</head>
<body>
<div id="l-map"></div>
</body>
</html>
<script type="text/javascript">
// 百度地圖API功能
//瀏覽器定位
var geolocation = new BMap.Geolocation();
geolocation.getCurrentPosition(function (r) {
if (this.getStatus() == BMAP_STATUS_SUCCESS) {
var map = new BMap.Map("l-map");
// var point = new BMap.Point(116.400244, 39.92556);
map.centerAndZoom(r.point, 12); //定義地圖等級,就是放大倍數(shù)
map.enableScrollWheelZoom(true); //啟用地圖滾輪放大縮小
var marker = new BMap.Marker(r.point);// 創(chuàng)建標(biāo)注
map.addOverlay(marker); // 將標(biāo)注添加到地圖中
map.panTo(r.point);
// alert('您的位置:' + r.point.lng + ',' + r.point.lat);
marker.enableDragging(); //標(biāo)注可拖拽
//marker.disableDragging(); // 不可拖拽
// 開啟事件監(jiān)聽
marker.addEventListener("dragend", function (e) {
var x = e.point.lng; //經(jīng)度
var y = e.point.lat; //緯度
alert("拖到的地點(diǎn)的經(jīng)緯度:" + x + "寒矿," + y);
});
}
else {
alert('failed' + this.getStatus());
}
}, { enableHighAccuracy: true })
//關(guān)于狀態(tài)碼
//BMAP_STATUS_SUCCESS 檢索成功突琳。對應(yīng)數(shù)值“0”。
//BMAP_STATUS_CITY_LIST 城市列表符相。對應(yīng)數(shù)值“1”拆融。
//BMAP_STATUS_UNKNOWN_LOCATION 位置結(jié)果未知。對應(yīng)數(shù)值“2”啊终。
//BMAP_STATUS_UNKNOWN_ROUTE 導(dǎo)航結(jié)果未知镜豹。對應(yīng)數(shù)值“3”。
//BMAP_STATUS_INVALID_KEY 非法密鑰孕索。對應(yīng)數(shù)值“4”逛艰。
//BMAP_STATUS_INVALID_REQUEST 非法請求躏碳。對應(yīng)數(shù)值“5”搞旭。
//BMAP_STATUS_PERMISSION_DENIED 沒有權(quán)限。對應(yīng)數(shù)值“6”菇绵。(自 1.1 新增)
//BMAP_STATUS_SERVICE_UNAVAILABLE 服務(wù)不可用肄渗。對應(yīng)數(shù)值“7”。(自 1.1 新增)
//BMAP_STATUS_TIMEOUT 超時咬最。對應(yīng)數(shù)值“8”翎嫡。(自 1.1 新增)
</script>