vue+百度地图:自定义覆盖物

本文介绍如何在Vue项目中结合百度地图API创建复杂的自定义覆盖物,包括覆盖物的样式、指标、箭头以及地点信息的显示,并展示了动态添加多个覆盖物的示例代码。
摘要由CSDN通过智能技术生成
// 复杂的自定义覆盖物
        function ComplexCustomOverlay(point, text, tipText){
          this._point = point;
          this._text = text;
          this._tipText = tipText;
        }
        ComplexCustomOverlay.prototype = new BMap.Overlay();
        ComplexCustomOverlay.prototype.initialize = function(map){
          this._map = map;
          let div = this._div = document.createElement("div");
          let backColor = "green";
          // 覆盖物样式
          div.style.position = "absolute";
          div.style.zIndex = BMap.Overlay.getZIndex(this._point.lat);
          div.style.color = "#000";
          div.style.whiteSpace = "nowrap";
          div.style.MozUserSelect = "none";
          div.style.fontSize = "12px";
          div.style.textAlign = 'center';
          div.className = 'point';

          // 指标
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值