【问题标题】:Openlayers - Only display layers above a certain zoom levelOpenlayers - 仅显示高于特定缩放级别的图层
【发布时间】:2020-01-05 13:52:23
【问题描述】:

我正在制作具有不同矢量图层的开放图层地图。我想添加一个功能,即某个矢量图层仅以特定的缩放值显示,例如缩放> = 18。我尝试使用函数 minZoom 和 minScale / maxScale,但它不起作用。我想以 >= 18 的缩放级别显示的矢量图层称为“dach 层”。我还尝试使用 if 函数来解决它:

// dach layer anzeigen versuch
const dach = document.getElementById('dach');
dach.addEventListener('click', function (event) {
  var checkBox = document.getElementById("dach");
  if (checkBox.checked == true) {
    if (map.getZoom() > 17) {
      dachLayer.setMap(map);
      //hitzeLayer.setVisible(true);
    }
   } else {
      //hitzeLayer.setVisible(false);
      dachLayer.setMap(undefined);
    }
}); 

这是我使用的代码:

import 'ol/ol.css';
import Map from 'ol/Map';
import View from 'ol/View';
import TileLayer from 'ol/layer/Tile';
import Stamen from 'ol/source/Stamen';
import VectorLayer from 'ol/layer/Vector';
import Vector from 'ol/source/Vector';
import GeoJSON from 'ol/format/GeoJSON';
import Style from 'ol/style/Style';
import Circle from 'ol/style/Circle';
import Fill from 'ol/style/Fill';
import Stroke from 'ol/style/Stroke';
import Overlay from 'ol/Overlay';
import {
  fromLonLat,
  toLonLat
} from 'ol/proj';
import sync from 'ol-hashed';
import OSM from 'ol/source/OSM';
import Feature from 'ol/Feature';
import {
  circular
} from 'ol/geom/Polygon';
import Point from 'ol/geom/Point';
import Control from 'ol/control/Control';
import * as olProj from 'ol/proj';
import XYZ from 'ol/source/XYZ';

// define the map
const map = new Map({
  target: 'map',
  view: new View({
    center: fromLonLat([16.37, 48.2]),
    zoom: 13
  })
});

sync(map);

//Adresssuche
const searchResultSource = new Vector();
const searchResultLayer = new VectorLayer({
  source: searchResultSource
});

searchResultLayer.setStyle(new Style({
  image: new Circle({
    fill: new Fill({
      color: 'rgba(0, 128, 0, 1)'
    }),
    stroke: new Stroke({
      color: '#000000',
      width: 1.25
    }),
    radius: 15
  })
}));

var element = document.getElementById('search');
element.addEventListener('keydown', listenerFunction);

function listenerFunction(event) {
  console.log(event);
  console.log(event.keyCode);
  if (event.keyCode === 13) {

    const xhr = new XMLHttpRequest;
    xhr.open('GET', 'https://photon.komoot.de/api/?q=' + element.value + '&limit=3');
    xhr.onload = function () {
      const json = JSON.parse(xhr.responseText);
      const geoJsonReader = new GeoJSON({
        featureProjection: 'EPSG:3857'
      });
      searchResultSource.clear();
      const features = geoJsonReader.readFeatures(json);
      console.log(features);
      searchResultSource.addFeatures(features);
      if (!searchResultSource.isEmpty()) {
        map.getView().fit(searchResultSource.getExtent(), {
          maxZoom: 18,
          duration: 500
        });
      }
    };
    xhr.send();


  }
}

//OpenStreetMap
const OSMbaseLayer = new TileLayer({
  type: 'base',
  source: new OSM()
});

// Statellit
const satellitLayer = new TileLayer({
  source: new XYZ({
    attributions: ['Powered by Esri', 'Source: Esri, DigitalGlobe, GeoEye, Earthstar Geographics, CNES/Airbus DS, USDA, USGS, AeroGRID, IGN, and the GIS User Community'],
    attributionsCollapsible: false,
    url: 'https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}',
    maxZoom: 30
  })
});

//shape
const dachLayer = new VectorLayer({
  source: new Vector({
    name: 'dach',
    url: 'data/dach.geojson',
    format: new GeoJSON()
  })
});

dachLayer.setStyle(new Style({
  fill: new Fill({
    color: 'brown'
  }),
  stroke: new Stroke({
    color: 'brown',
    width: 0.25
  }),
}));

// Layer hinzufügen
map.addLayer(OSMbaseLayer);
map.addLayer(searchResultLayer);
dachLayer.setZIndex(15);

// dach layer anzeigen
const dach = document.getElementById('dach');
dach.addEventListener('click', function (event) {
  var checkBox = document.getElementById("dach");
  if (checkBox.checked == true) {
    dachLayer.setMap(map);
    //hitzeLayer.setVisible(true);
  } else {
    //hitzeLayer.setVisible(false);
    dachLayer.setMap(undefined);
  }
}); 

// Get the OSMbase Base-Button
const OSMbase = document.getElementById('OSMbase');
OSMbase.addEventListener('click', function (event) {
  //contr.style.color = 'ffffff';
  //Andere Layer entfernen
  map.removeLayer(satellitLayer);
  map.removeLayer(searchResultLayer);
  //OSM Layer hinzufügen
  map.addLayer(OSMbaseLayer);
  map.addLayer(searchResultLayer);
});

// Get the satellit Base-Button
const satellit = document.getElementById('satellit');
satellit.addEventListener('click', function (event) {
  //Andere Layer entfernen
  map.removeLayer(OSMbaseLayer);
  map.removeLayer(searchResultLayer);
  //Satelliten Layer hinzufügen
  map.addLayer(satellitLayer);
  map.addLayer(searchResultLayer);
});

【问题讨论】:

  • minZoom 应该可以工作并且使用起来更简单。请记住,像 maxResolution minZoom 是独占的,因此要包含第 18 级,您需要设置 minZoom: 17.9999 这是一个在第 4 级打开的简单示例codesandbox.io/s/vector-layer-4tyl6
  • 我用 minZoom 功能试了一下,还是不行。该图层仍以较低的缩放级别显示。
  • 您使用的是哪个版本的 OpenLayers?
  • 我认为是最新的,所以 v.6
  • 这是我想以 > 18 的缩放级别显示的图层,以及我如何编辑它:const dachLayer = new VectorLayer({ minZoom: 17.9999, source: new Vector({ name: 'dach', url: 'data/dachnotnull.geojson', format: new GeoJSON() }) });

标签: html if-statement vector openlayers layer


【解决方案1】:

getZoom() 方法源自 View 模块:

https://openlayers.org/en/latest/apidoc/module-ol_View-View.html#getZoom

以下作品:

dach.addEventListener('click', function (event) {
  var checkBox = document.getElementById("dach");
  if (checkBox.checked == true) {
    if (map.getview().getZoom() > 17) {
      dachLayer.setMap(map);
      //hitzeLayer.setVisible(true);
    }
   } else {
      //hitzeLayer.setVisible(false);
      dachLayer.setMap(undefined);
    }
}); 

同时,您可能希望查看地图上的“moveend”事件以监听缩放变化而不是单击:

map.on('moveend', () => {
// do kewl things
}

【讨论】:

  • 我只是累了,但代码不起作用:/矢量图层根本没有出现
  • 创建了一个 JSFiddle,在这里可以正常工作:jsfiddle.net/84j2q05t 删除了你的复选框,懒得把它放在 HTML 中。
  • 当我单击 + 缩放按钮时,它以某种方式仅切换图层,但是如果我在不单击 + 缩放按钮的情况下放大,则不会发生任何事情。所以我需要插入 map.on('moveend',... 让它在我放大而不点击 + 按钮时出现?我做对了吗?
  • 目前您正在监听特定元素的点击事件。我假设这是在地图上。因此,如果您使用鼠标进行缩放,则在您单击 div 之前不会触发条件语句。如果您删除点击事件,并将其替换为如上所述的“移动结束”事件,您将在“移动”结束时触发条件语句if (map.getview().getZoom() > 17)。我认为这会按您的预期工作。
  • 好的,我不明白,它不起作用,我尝试用 'moveend' 替换 'click',但不知何故图层消失了
猜你喜欢
  • 2020-08-13
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多