地图开发小功能

1 篇文章 0 订阅
1 篇文章 0 订阅

1、地图测距、测面

// 测距
    var toolMarkerList=[];
    Map.prototype.beginDis=function(){
      var that=this;
      var pointOption = {
        radius: 5,
        color: "red",
        weight:'0.9',
        fillOpacity: 0
      };
      var lineOption={
        color:"red",
        weight:1
      }
      var pointList=[];
      this.map.on('click',function(e){
        addMarker(e);
      }).on('dblclick',function(e){
        addMarker(e);
        that.map.off('click');
        that.map.off('dblclick');
      });

      var sum=0;
      function addMarker(e){
        var marker=L.circleMarker(e.latlng,pointOption);
        toolMarkerList.push(marker);
        marker.addTo(that.map);
        pointList.push([e.latlng.lat,e.latlng.lng]);
        if(pointList.length==1){
            marker.bindTooltip("起点",{permanent:true,offset:L.point(10,0),className:'leaflet-label'}).openTooltip();
        }
        else{
          var line=L.polyline(pointList,lineOption);
          toolMarkerList.push(line);
          line.addTo(that.map);

          var first=pointList[pointList.length-1];
          var second=pointList[pointList.length-2];
          sum+=parseInt(Math.sqrt((first[0]-second[0])*(first[0]-second[0])+(first[1]-second[1])*(first[1]-second[1])));
          marker.bindTooltip(sum+"米",{permanent:true,offset:L.point(10,0),className:'leaflet-label'}).openTooltip();
        }
      }
    }

    // 测面
    Map.prototype.beginArea=function(){
      var that=this;
      var pointOption = {
        radius: 5,
        color: "red",
        weight:'0.9',
        fillOpacity: 0
      };
      var lineOption={
        color:"red",
        weight:1
      }
      var polygonOption={
        color:"red",
        weight:1,
        fillColor:'gray',
        fillOpacity:'0.5'
      }
      var areaMarker=new L.polygon([]);
      toolMarkerList.push(areaMarker);
      var pointList=[];
      this.map.on('click',function(e){
        addMarker(e);
      }).on('dblclick',function(e){
        addMarker(e);
        that.map.off('click');
        that.map.off('dblclick');
      });


      function addMarker(e){
        var marker=L.circleMarker(e.latlng,pointOption);
        toolMarkerList.push(marker);
        marker.addTo(that.map);
        pointList.push([e.latlng.lat,e.latlng.lng]);
        if(pointList.length==2){
          var line=L.polyline(pointList,lineOption);
          toolMarkerList.push(line);
          line.addTo(that.map);
        }else if(pointList.length>2){
          areaMarker.setLatLngs(pointList);
          areaMarker.setStyle(polygonOption);
          areaMarker.addTo(that.map);
        }

        if(e.type=="dblclick"){
          var area=CalculatePolygonArea(pointList);
          marker.bindTooltip(parseInt(area)+"平方米",{permanent:true,offset:L.point(10,0)}).openTooltip();
        }
      }
    }


    // 清除标记
    Map.prototype.clearToolMarker=function(){
      var map=this.map;
       toolMarkerList.forEach(function(item,index){
        map.removeLayer(item);
       });
      map.off('click');
      map.off('dblclick');
    }


<!-- 工具条 -->
      <div id="layerbox_item">
          <div class="show-list">
              <a class="layer_item item" href="javascript:void(0)" id="mdis-tool">
                  <span class="icon">
                      <i class="iconfont icon-mdis"></i>
                  </span>
                  <span class="name">测距</span>
              </a>
              <a class="layer_item item" href="javascript:void(0)" id="marea-tool">
                  <span class="icon">
                      <i class="iconfont icon-marea"></i>
                  </span>
                  <span class="name">测面</span>
              </a>
              <a class="layer_item item" href="javascript:void(0)" id="clear-tool">
                  <span class="icon">
                      <i class="iconfont icon-clear"></i>
                  </span>
                  <span class="name">清除</span>
              </a>
          </div>
      </div>


// 工具条
$("#mdis-tool").click(function(){
    event.stopPropagation();
    map.beginDis();
});

$("#marea-tool").click(function(){
    event.stopPropagation();
    map.beginArea();
});

$("#clear-tool").click(function(){
    event.stopPropagation();
    map.clearToolMarker();
});


/*工具条*/
#layerbox_item{
    padding: 14px 0 13px;
    background: #fff;
    border-radius: 3px;
    height: 44px;
    font-size: 12px;
    line-height: 1.5;
    color: #565656;
    word-wrap: break-word;
    position: absolute;
    top:20px;right: 120px;
    z-index: 999;
}

#layerbox_item .show-list{
    position: relative;
}

#layerbox_item .item:first-child{
    border-left: 0;
}

#layerbox_item .item{
    float: left;
    height: 18px;
    padding: 0 12px;
    border-left: 1px dashed #dbdee2;
    vertical-align: middle;
    cursor: pointer;
    overflow: visible;
    zoom:1;
    color: #5f6477;
}

#layerbox_item .item .icon{
    width: 20px;
    height: 18px;
    line-height: 18px;
    margin-right: 6px;
}

#layerbox_item .item .name{
    line-height: 18px;
}

#layerbox_item .item span{
    display: inline-block;
    vertical-align: middle;
    float: left;
}

#layerbox_item .satellite .icon{
    background-position: 4px 1px;
}

#layerbox_item .item .icon .iconfont{
    width: 20px;
    height: 18px;
    line-height: 18px;
    font-size: 18px;
}

@font-face{
    font-family:iconfont;
    src:url(fonts/font_wp1i0nax5vhx5hfr.eot);
    src:url(fonts/font_wp1i0nax5vhx5hfr.eot) format('embedded-opentype'),url(fonts/font_wp1i0nax5vhx5hfr.ttf) format('truetype'),url(fonts/font_wp1i0nax5vhx5hfr.svg) format('svg')
}
.iconfont{font-family:iconfont!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

.icon-mdis:before{
    content:"\e621";
}

.icon-marea:before{
    content:"\e62f";
}

.icon-label:before{
    content: "\e606";
}

.icon-capture:before{
    content:"\eb26";
}

.icon-clear:before{
    content: "\e617";
}

.icon-star:before{
    content:'\e600';
}

#layerbox_item .item:hover{
    opacity:.6
}

#layerbox_item .item.active{
    color:#009cf9;
}

function CalArea(latLngs) {
             var pointsCount = latLngs.length,
                 area = 0.0,
                 d2r = Math.PI / 180,
                 p1, p2;
             if (pointsCount > 2) {
                 for (var i = 0; i < pointsCount; i++) {
                     p1 = latLngs[i];
                     p2 = latLngs[(i + 1) % pointsCount];
                     area += ((p2.lng - p1.lng) * d2r) *
                         (2 + Math.sin(p1.lat * d2r) + Math.sin(p2.lat * d2r));
                 }
                 area = area * 6378137.0 * 6378137.0 / 2.0;
             }
             return Math.abs(area);
         }

2、 自定义画面

// 自定义勾画面状
function draw_areaoptions(map){
        var points = [], geometry = []
        var lines = new L.polyline([])
        var tempLines = new L.polyline([], { dashArray: 5 })

        map.on('click', onClick);    //点击地图
        map.on('dblclick', onDoubleClick);
        map.on('mousemove', onMove)//双击地图

        //map.off(....) 关闭该事件

        function onClick(e) {

            points.push([e.latlng.lat, e.latlng.lng])
            lines.addLatLng(e.latlng)
            // map.addLayer(tempLines)
            // map.addLayer(lines)
            tempLines.addTo(Map.drawLayer);
            lines.addTo(Map.drawLayer);
            const node=L.circle(e.latlng, { color: '#ff0000', fillColor: 'ff0000', fillOpacity: 1 })
            // map.addLayer(node)
            node.addTo(Map.drawLayer);
            geometry.push(node)

        }
        function onMove(e) {
            if (points.length > 0) {
                ls = [points[points.length - 1], [e.latlng.lat, e.latlng.lng], points[0]]
                tempLines.setLatLngs(ls)
                // map.addLayer(tempLines)
            }
        }

        function onDoubleClick(e) {
            geometry.push(L.polygon(points).addTo(Map.drawLayer))
            points.push(points[0]);
            getIntersect(JSON.stringify(XY2YX([points])[0]),Map.drawbuildingLayer,map);
            //画完的结果给到text中
            var temp=$(".cond1").text()+"自定义:"+JSON.stringify(XY2YX([points])[0])+"; ";
            $(".cond1").text(temp);
            points = []
            //map.removeLayer(tempLines)
            //tempLines.remove()
            lines.remove()
            tempLines.remove()
            lines = new L.polyline([])
            map.off('click');    //点击地图
            map.off('dblclick');
            map.off('mousemove')//双击地图
        }

}

3、地图查询

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <title>Spatial Queries on a Feature Layer</title>
  <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />

  <!-- Load Leaflet from CDN -->
  <link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
    integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
    crossorigin=""/>
  <script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
    integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
    crossorigin=""></script>

  <!-- Load Esri Leaflet from CDN -->
  <script src="https://unpkg.com/esri-leaflet@3.0.4/dist/esri-leaflet.js"
    integrity="sha512-oUArlxr7VpoY7f/dd3ZdUL7FGOvS79nXVVQhxlg6ij4Fhdc4QID43LUFRs7abwHNJ0EYWijiN5LP2ZRR2PY4hQ=="
    crossorigin=""></script>

  <!-- Load Esri Leaflet Vector from CDN -->
  <script src="https://unpkg.com/esri-leaflet-vector@3.1.1/dist/esri-leaflet-vector.js"
    integrity="sha512-7rLAors9em7cR3/583gZSvu1mxwPBUjWjdFJ000pc4Wpu+fq84lXF1l4dbG4ShiPQ4pSBUTb4e9xaO6xtMZIlA=="
    crossorigin=""></script>

  <style>
    body { margin:0; padding:0; }
    #map { position: absolute; top:0; bottom:0; right:0; left:0; }
  </style>
</head>
<body>

<style>
  #panel {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: white;
    padding: 10px;
  }
</style>

<div id="map"></div>

<div id="panel" class="leaflet-bar">
  Neighborhoods
  <select name="relation" id="relationSelect">
    <option value="within">Within<options>
    <option value="contains">Contains<options>
    <option value="intersects">Intersects<options>
    <option value="overlaps">Overlaps<options>
  </select>
  <select name="geometry" id="geometrySelect">
    <option value="bounds">Bounds<options>
    <option value="point">Point<options>
    <option value="line">Line<options>
    <option value="polygon">Polygon<options>
  </select>
  <button id="executeQuery">Run Query</button>
</div>

<script>
  var map = L.map('map').setView([45.525, -122.628], 11);

  L.esri.Vector.vectorBasemapLayer('ArcGIS:Topographic', {
    apikey: apiKey // Replace with your API key - https://developers.arcgis.com
  }).addTo(map);

  // create our layer
  var neighborhoods = L.esri.featureLayer({
    url: 'https://www.portlandmaps.com/arcgis/rest/services/Public/Zoning/MapServer/32',
    style: {
      color: '#000',
      weight: 1,
      opacity: 0.4
    }
  }).addTo(map);

  // create a marker object to query against
  var marker = L.marker([45.571034, -122.686386]).addTo(map);

  // create a bounds object to query against
  var bounds = L.latLngBounds([
    [45.494556, -122.691536],
    [45.538100, -122.608452]
  ]);

  // create a rectangle to visualize the bounds
  L.rectangle(bounds, {
    color: 'blue',
    weight: 2
  }).addTo(map);

  // create a line to query against
  var line = L.polyline([
    [45.559256, -122.611885],
    [45.502256, -122.562790],
    [45.483244, -122.620468]
  ], {
    color: 'blue',
    weight: 2
  }).addTo(map);

  // create a polygon to query against
  var polygon = L.polygon([
    [45.484894, -122.493696],
    [45.512025, -122.492199],
    [45.517669, -122.561457],
    [45.487343, -122.558573]
  ], {
    color: 'blue',
    weight: 2
  }).addTo(map);

  // collect geometries into an object so we can reference them later
  var geometries = {
    bounds: bounds,
    line: line,
    polygon: polygon,
    point: marker
  };

  // get references to our <select> elements
  var relationship = document.getElementById('relationSelect');
  var geometry = document.getElementById('geometrySelect');
  var runQueryButton = document.getElementById('executeQuery');

  var previousIds = [];

  // reset all features back to their regularly defined styles
  function reset () {
    for (var i = previousIds.length - 1; i >= 0; i--) {
      neighborhoods.resetStyle(previousIds[i]);
    }
}
  // query the API and highlight features
  function query () {
    reset();
    // lookup our input geometry
    var inputGeometry = geometries[geometry.value];

    // query the service executing the selected relation with the selected input geometry
    neighborhoods.query()[relationship.value](inputGeometry).ids(function (error, ids) {
      // if there is an error with the query, you can handle it here
      if (error) {
        console.log('Error with query: ' + error);
      } else if (ids) {
        previousIds = ids;
        for (var i = ids.length - 1; i >= 0; i--) {
          neighborhoods.setFeatureStyle(ids[i], { color: 'red', weight: 2 });
        }
      }
    });
  }

  // query when "Run Query" button is clicked
  runQueryButton.addEventListener('click', query);

  // once all neighborhoods have loaded run the default query
  neighborhoods.once('load', function () {
    query();
  });
</script>

</body>
</html>

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值