高德地图坐标点点击弹出框

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/DannyIsCoder/article/details/80415582

this.pointSimplifierIns.on('pointClick pointMouseover pointMouseout', function(e, record) {
   
if(e.type === 'pointClick'){
       
//alert(111);
        //console.log(record.data.data);
        //console.log(record.data.position);
       
var info = [];
       
info.push("<div><div><img style=\"float:left;\" src=\" http://webapi.amap.com/images/autonavi.png \"/></div> ");
       
info.push("<div style=\"padding:0px 0px 0px 4px;\"><b>高德软件</b>");
       
info.push("电话 : 010-84107000   邮编 : 100102");
       
info.push("地址 :北京市朝阳区望京阜荣街10号首开广场4层</div></div>");
       
infoWindow = new AMap.InfoWindow({
           
content: info.join("<br/>")  //使用默认信息窗体框样式,显示信息内容
       
});
       
infoWindow.open(ths.map, ths.map.getCenter());

   
}
})
;



http://www.yejianwu.cn/?p=366

猜你喜欢

转载自blog.csdn.net/DannyIsCoder/article/details/80415582