百度地图API之百度地图退拽标记点获取经纬度的实现代码
本文给大家分享百度地图api之百度地图退拽标记点获取经纬度的实现方法,具体代码如下所示:
<!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=您的密钥"></script>
<title>设置点是否可拖拽</title>
</head>
<body>
<div id="l-map"></div>
<input id="l-map-lng" type="text"/>
<input id="l-map-lat" type="text"/>
</body>
</html>
<script type="text/javascript">
// 百度地图API功能
var map = new BMap.Map("l-map");
var point = new BMap.Point(116.400244,39.92556);
map.centerAndZoom(point, 12);
var marker = new BMap.Marker(point);// 创建标注
map.addOverlay(marker); // 将标注添加到地图中
marker.enableDragging();
marker.addEventListener("dragend", function(e){ //拖动事件
document.getElementById("l-map-lng").value = e.point.lng;
document.getElementById("l-map-lat").value = e.point.lat; //打印拖动结束坐标
});如果大家觉得以上介绍的不够详细,大家可以参考下文
百度地图经纬度转换到腾讯地图/Google 对应的经纬度
基于JavaScript实现高德地图和百度地图提取行政区边界经纬度坐标
相关推荐
songyaping0 2011-07-19
xcjing 2015-11-12
xiaoshe 2014-07-10
deusrwvf 2011-10-08
silencexiao 2015-11-12
maxianshi 2019-04-25
lebulangzhen 2012-02-01
guoyanga 2020-11-10
ALLENJIAO 2020-06-13
shilongdred 2019-11-19
nellson 2019-11-19
有梦就能实现 2019-09-03
随手一记 2013-08-08
minggehenhao 2019-06-30
wildelf 2015-09-17
submarineas 2019-06-30
ZZZhangbingyi 2019-06-29
Donutsapps 2019-06-28
zhaocen0 2019-06-19