博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
百度地图API示例之设置地图显示范围
阅读量:5024 次
发布时间:2019-06-12

本文共 2672 字,大约阅读时间需要 8 分钟。

 

代码

  
设置地图显示范围

将地图显示范围设定在指定区域,地图拖出该区域后会重新弹回。

引入更多的类AreaRestriction_min

/**

 * @fileoverview 百度地图浏览区域限制类,对外开放。
 * 允许开发者输入限定浏览的地图区域的Bounds值,
 * 则地图浏览者只能在限定区域内浏览地图。
 * 基于Baidu Map API 1.2。
 *
 * @author Baidu Map Api Group
 * @version 1.2
 */
 
  /**
   * @namespace BMap的所有library类均放在BMapLib命名空间下
   */
  var BMapLib = window.BMapLib = BMapLib || {};
 
  (function() {
 
      /**
       * @exports AreaRestriction as BMapLib.AreaRestriction
       */
      var AreaRestriction =
          /**
           * AreaRestriction类,静态类,不用实例化
           * @class AreaRestriction类提供的都是静态方法,勿需实例化即可使用。     
           */
          BMapLib.AreaRestriction = function(){
          }
      
      /**
       * 是否已经对区域进行过限定的标识
       * @private
       * @type {Boolean}
       */
      var _isRestricted = false;
 
      /**
       * map对象
       * @private
       * @type {BMap}
       */
      var _map = null;
 
      /**
       * 开发者需要限定的区域
       * @private
       * @type {BMap.Bounds}
       */
      var _bounds = null;
 
      /**
       * 对可浏览地图区域的限定方法
       * @param {BMap} map map对象
       * @param {BMap.Bounds} bounds 开发者需要限定的区域
       *
       * @return {Boolean} 完成了对区域的限制即返回true,否则为false
       */
      AreaRestriction.setBounds = function(map, bounds){
          // 验证输入值的合法性
          if (!map ||
              !bounds ||
              !(bounds instanceof BMap.Bounds)) {
                  throw "请检查传入参数值的合法性";
                  return false;
          }
          
          if (_isRestricted) {
              this.clearBounds();
          }
          _map = map;
          _bounds = bounds;
 
          // 添加地图的moving事件,用以对浏览区域的限制
          _map.addEventListener("moveend", this._mapMoveendEvent);
          _isRestricted = true;
          return true;
      };
 
      /**
       * 需要绑定在地图移动事件中的操作,主要控制出界时的地图重新定位
       * @param {Event} e e对象
       *
       * @return 无返回值
       */
      AreaRestriction._mapMoveendEvent = function(e) {
          // 如果当前完全没有出界,则无操作
          if (_bounds.containsBounds(_map.getBounds())) {
              return;
          }
 
          // 两个需要对比的bound区域的边界值
          var curBounds = _map.getBounds(),
                curBoundsSW = curBounds.getSouthWest(),
                curBoundsNE = curBounds.getNorthEast(),
                _boundsSW = _bounds.getSouthWest(),
                _boundsNE = _bounds.getNorthEast();
 
          // 需要计算定位中心点的四个边界
          var boundary = {n : 0, e : 0, s : 0, w : 0};
          
         // 计算需要定位的中心点的上方边界
         boundary.n = (curBoundsNE.lat < _boundsNE.lat) ?
                                     curBoundsNE.lat :
                                     _boundsNE.lat;
 
         // 计算需要定位的中心点的右边边界
         boundary.e = (curBoundsNE.lng < _boundsNE.lng) ?
                                     curBoundsNE.lng :
                                     _boundsNE.lng;
 
         // 计算需要定位的中心点的下方边界
         boundary.s = (curBoundsSW.lat < _boundsSW.lat) ?
                                     _boundsSW.lat :
                                     curBoundsSW.lat;
 
         // 计算需要定位的中心点的左边边界
         boundary.w = (curBoundsSW.lng < _boundsSW.lng) ?
                                     _boundsSW.lng :
                                     curBoundsSW.lng;
         
         // 设置新的中心点
        var center = new BMap.Point(boundary.w + (boundary.e - boundary.w) / 2,
                                                          boundary.s + (boundary.n - boundary.s) / 2);
        setTimeout(function() {
             _map.panTo(center, {noAnimation : "no"});
         }, 1);
     };
 
     /**
      * 清除对地图浏览区域限定的状态
      * @return 无返回值
      */
     AreaRestriction.clearBounds = function(){
         if (!_isRestricted) {
             return;
         }
         _map.removeEventListener("moveend", this._mapMoveendEvent);
         _isRestricted = false;
     };
 
 })();

posted on
2016-09-05 14:26 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/ldms/p/5842153.html

你可能感兴趣的文章
函数中关于const关键字使用的注意事项
查看>>
微信架构(转)
查看>>
Web项目中的路径问题
查看>>
js随机数的取整
查看>>
关于解析漏洞
查看>>
十大经典预测算法(六)---集成学习(模型融合算法)
查看>>
用php做一个简单的注册用户功能
查看>>
一款基于css3的3D图片翻页切换特效
查看>>
Feign使用Hystrix无效原因及解决方法
查看>>
Sizeof与Strlen的区别与联系
查看>>
hadoop2.2.0_hbase0.96_zookeeper3.4.5全分布式安装文档下载
查看>>
Flutter 贝塞尔曲线切割
查看>>
golang 的编译安装以及supervisord部署
查看>>
easyui源码翻译1.32--Dialog(对话框窗口)
查看>>
阿里架构师,讲述基于微服务的软件架构模式
查看>>
Eclipse导入maven项目时,Pom.xml文件报错处理方法
查看>>
01、JAVA开发准备
查看>>
asp.net mvc 错误处理 - 自定义报错处理,生成错误日志
查看>>
Linux centos ssh
查看>>
R语言之避免for循环示例
查看>>