百度地图API如何给自定义覆盖物添加事件

摘要:

让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:国际域名空间、网络空间、营销软件、网站建设、青山湖网站维护、网站推广。

  给marker、lable、circle等Overlay添加事件很简单,直接addEventListener即可。那么,自定义覆盖物的事件应该如何添加呢?我们一起来看一看~

  一、定义构造函数并继承Overlay

 
 
 
 
  1.   //定义自定义覆盖物的构造函数
  2.   functionSquareOverlay(center, length, color){
  3.   this._center = center;
  4.   this._length = length;
  5.   this._color = color;
  6.   }
  7.   //继承API的BMap.Overlay
  8.   SquareOverlay.prototype = newBMap.Overlay();

  二、初始化自定义覆盖物

 
 
 
 
  1.   //实现初始化方法
  2.   SquareOverlay.prototype.initialize = function(map){
  3.   //保存map对象实例
  4.   this._map = map;
  5.   //创建div元素,作为自定义覆盖物的容器
  6.   vardiv = document.createElement("div");
  7.   div.style.position = "absolute";
  8.   //可以根据参数设置元素外观
  9.   div.style.width = this._length + "px";
  10.   div.style.height = this._length + "px";
  11.   div.style.background = this._color;
  12.   //将div添加到覆盖物容器中
  13.   map.getPanes().markerPane.appendChild(div);
  14.  //保存div实例
  15.   this._div = div;
  16.   //需要将div元素作为方法的返回值,当调用该覆盖物的show、
  17.   //hide方法,或者对覆盖物进行移除时,API都将操作此元素。
  18.   returndiv;
  19.   }

  三、绘制覆盖物

 
 
 
 
  1.   //实现绘制方法
  2.   SquareOverlay.prototype.draw = function(){
  3.   //根据地理坐标转换为像素坐标,并设置给容器
  4.   varposition = this._map.pointToOverlayPixel(this._center);
  5.   this._div.style.left = position.x - this._length / 2 + "px";
  6.   this._div.style.top = position.y - this._length / 2 + "px";
  7.   }

  四、添加覆盖物

 
 
 
 
  1.   //添加自定义覆盖物
  2.   varmySquare = newSquareOverlay(map.getCenter(), 100, "red");
  3.   map.addOverlay(mySquare);

  五、给自定义覆盖物添加事件

  1、显示事件

 
 
 
 
  1.   SquareOverlay.prototype.show = function(){
  2.   if(this._div){
  3.   this._div.style.display = "";
  4.   }
  5.   }

  添加完以上显示覆盖物事件后,只需要下面这句话,就可以显示覆盖物了。

  mySquare.show();

  2、隐藏覆盖物

 
 
 
 
  1.   //实现隐藏方法
  2.   SquareOverlay.prototype.hide = function(){
  3.   if(this._div){
  4.   this._div.style.display = "none";
  5.   }
  6.   }

  添加完以上code,只需使用这句话,即可隐藏覆盖物。

  mySquare.hide();

  3、改变覆盖物颜色

 
 
 
 
  1.   SquareOverlay.prototype.yellow = function(){
  2.   if(this._div){
  3.   this._div.style.background = "yellow";
  4.   }
  5.   }

  上面这句话,是把覆盖物的背景颜色改成黄色,使用以下语句即可生效:

  mySquare.yellow();

  “第五部分、给覆盖物添加事件”小结:

  我们在地图上添加了一个红色覆盖物,然后分别添加“显示、隐藏、改变颜色”的事件。示意图如下:

那么,我们需要在html里,先写出map的容器,和3个按钮。

 
 
 
 
  1.   
  •   

  •   
  •   
  •   
  •   

  •   然后,在javascript中,添加这三个函数:
  •   //实现显示方法
  •   SquareOverlay.prototype.show = function(){
  •   if(this._div){
  •   this._div.style.display = "";
  •   }
  •   }
  •   //实现隐藏方法
  •   SquareOverlay.prototype.hide = function(){
  •   if(this._div){
  •   this._div.style.display = "none";
  •   }
  •   }
  •   //改变颜色的方法
  •   SquareOverlay.prototype.yellow = function(){
  •  if(this._div){
  •   this._div.style.background = "yellow";
  •   }
  •   }
  •   六、如何给自定义覆盖物添加点击事件(这章重要!很多人问的)

      比如,我们给自定义覆盖物点击click事件。首先,需要添加一个addEventListener 的事件。如下:

     
     
     
     
    1.   SquareOverlay.prototype.addEventListener = function(event,fun){
    2.   this._div['on'+event] = fun;
    3.   }

      再写该函数里面的参数,比如click。这样就跟百度地图API里面的覆盖物事件一样了。

     
     
     
     
    1.   mySquare.addEventListener('click',function(){
    2.   alert('click');
    3.   });

      同理,添加完毕addEventListener之后,还可以添加其他鼠标事件,比如mouseover。

      mySquare.addEventListener('mousemover',function(){

      alert('鼠标移上来了');

      });

      七、全部源代码

    自定义覆盖物

     
     
     
     
    1. 自定义覆盖物的点击事件
  • varmap =newBMap.Map("container"); //创建Map实例
  • varpoint =newBMap.Point(116.404, 39.915); //创建点坐标
  • map.centerAndZoom(point,15); //初始化地图,设置中心点坐标和地图级别。
  • //1、定义构造函数并继承Overlay
  • //定义自定义覆盖物的构造函数
  • functionSquareOverlay(center, length, color){ 25this._center =center; 26this._length =length; 27this._color =color; 28} 29//继承API的BMap.Overlay
  • SquareOverlay.prototype =newBMap.Overlay(); 
  • //2、初始化自定义覆盖物
  • //实现初始化方法
  • SquareOverlay.prototype.initialize =function(map){ 
  • //保存map对象实例
  • this._map =map; 
  • //创建div元素,作为自定义覆盖物的容器
  • vardiv =document.createElement("div"); div.style.position ="absolute";
  • //可以根据参数设置元素外观
  • div.style.width =this._length +"px";
  • div.style.height =this._length +"px";
  • div.style.background =this._color; 
  • //将div添加到覆盖物容器中
  • map.getPanes().markerPane.appendChild(div); 46//保存div实例
  • this._div =div; 48//需要将div元素作为方法的返回值,当调用该覆盖物的show、
  • //hide方法,或者对覆盖物进行移除时,API都将操作此元素。
  • returndiv; 
  • }
  • //3、绘制覆盖物
  • //实现绘制方法
  • SquareOverlay.prototype.draw =function(){ 
  • //根据地理坐标转换为像素坐标,并设置给容器
  • varposition =this._map.pointToOverlayPixel(this._center);
  • this._div.style.left =position.x -this._length /2+"px";
  • this._div.style.top =position.y -this._length /2+"px";
  • }
  • //4、显示和隐藏覆盖物
  • //实现显示方法
  • SquareOverlay.prototype.show =function(){ 
  • if(this._div){ 
  • this._div.style.display ="";
  • //实现隐藏方法
  • SquareOverlay.prototype.hide =function(){ 
  • if(this._div){ 
  • this._div.style.display ="none";
  • }
  • //5、添加其他覆盖物方法
  • //比如,改变颜色
  • SquareOverlay.prototype.yellow =function(){ 
  • if(this._div){ 
  • this._div.style.background ="yellow";} 
  • }
  • //6、自定义覆盖物添加事件方法
  • SquareOverlay.prototype.addEventListener =function(event,fun){
  • this._div['on'+event] =fun;
  • }
  • //7、添加自定义覆盖物
  • varmySquare =newSquareOverlay(map.getCenter(), 100, "red"); 91map.addOverlay(mySquare);
  • //8、 为自定义覆盖物添加点击事件
  • mySquare.addEventListener('click',function(){
  • alert('click');
  • });
  •   八、感谢大家支持!

    文章名称:百度地图API如何给自定义覆盖物添加事件
    当前网址:http://www.hantingmc.com/qtweb/news0/258050.html

    网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

    广告

    声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

    猜你还喜欢下面的内容

    网站导航知识

    各行业网站