• openlayers 框选 按住ctrl鼠标框选


    <!DOCTYPE html>
    <html>
      <head>
        <title>Box Selection</title>
        <link rel="stylesheet" href="http://openlayers.org/en/v3.13.0/css/ol.css" type="text/css">
        <script src="http://openlayers.org/en/v3.13.0/build/ol.js"></script>
        <style>
          .ol-dragbox {
            background-color: rgba(255,255,255,0.4);
            border-color: rgba(100,150,0,1);
          }
        </style>
      </head>
      <body>
        <div id="map" class="map"></div>
        <div id="info">No countries selected</div>
        <script>
          var vectorSource = new ol.source.Vector({
            url: 'data/geojson/countries.geojson',
            format: new ol.format.GeoJSON()
          });
    
    
          var map = new ol.Map({
            layers: [
              new ol.layer.Tile({
                source: new ol.source.OSM()
              }),
              new ol.layer.Vector({
                source: vectorSource
              })
            ],
            renderer: 'canvas',
            target: 'map',
            view: new ol.View({
              center: [0, 0],
              zoom: 2
            })
          });
    
          // a normal select interaction to handle click
          var select = new ol.interaction.Select();
          map.addInteraction(select);
    
          var selectedFeatures = select.getFeatures();
    
          // a DragBox interaction used to select features by drawing boxes
          var dragBox = new ol.interaction.DragBox({
            condition: ol.events.condition.platformModifierKeyOnly
          });
    
          map.addInteraction(dragBox);
    
          var infoBox = document.getElementById('info');
    
          dragBox.on('boxend', function() {
            // features that intersect the box are added to the collection of
            // selected features, and their names are displayed in the "info"
            // div
            var info = [];
            var extent = dragBox.getGeometry().getExtent();
            vectorSource.forEachFeatureIntersectingExtent(extent, function(feature) {
              selectedFeatures.push(feature);
              info.push(feature.get('name'));
            });
            if (info.length > 0) {
              infoBox.innerHTML = info.join(', ');
            }
          });
    
          // clear selection when drawing a new box and when clicking on the map
          dragBox.on('boxstart', function() {
            selectedFeatures.clear();
            infoBox.innerHTML = '&nbsp;';
          });
          map.on('click', function() {
            selectedFeatures.clear();
            infoBox.innerHTML = '&nbsp;';
          });
        </script>
      </body>
    </html>
  • 相关阅读:
    js 解析 url参数中文的情况
    ++i i++ 的理解
    Linux 下升级python和安装pip
    sipp中的action使用方法
    Linux shell实现阳历转农历
    Linux 终端命令行提示符的艺术PS1进阶
    SQL系列学习(三) 获取Oracle、SqlServer、Access中表名、字段和主键
    SQL系列学习(一) 分页
    自定义服务器控件属性的特性
    JQuery使用$.ajax跨域调用winform托管的WCF服务(原创)
  • 原文地址:https://www.cnblogs.com/devgis/p/16385078.html
Copyright © 2020-2023  润新知