码迷,mamicode.com
首页 > Windows程序 > 详细

百度API地图的标注不是居中显示,而是显示在左上角

时间:2014-10-22 14:30:56      阅读:422      评论:0      收藏:0      [点我收藏+]

标签:style   ar   strong   div   on   log   html   ad   new   

对地图所在的div做了显示隐藏之类操作,标注就不是居中显示,而是显示在左上角

合理解决方式 map.panBy(305,165);

html:

<div id="allmap" style="width:560px;height:400px;"></div>

js:

var initPoint = new BMap.Point(longitude,latitude);

console.log(initPoint);
map.centerAndZoom(initPoint, 18);
//map.panTo(initPoint);//这个没起作用
var initMarker = new BMap.Marker(initPoint); // 创建标注
map.clearOverlays();
map.addOverlay(initMarker);
initMarker.enableDragging();
map.panBy(280, 200);//中心点偏移多少像素(width,height)为div 宽高的1/2;
$(‘#showMap‘).modal(‘show‘);

百度API地图的标注不是居中显示,而是显示在左上角

标签:style   ar   strong   div   on   log   html   ad   new   

原文地址:http://www.cnblogs.com/zodiacblog/p/4042862.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!