OpenLayers 4 - 适合所选功能的范围

OpenLayers 4 - fit to extent of selected features

又是我。所以,昨天我在缩放到 selected 功能时遇到了一些问题,我希望你们中的一些人可以正确地推动我 direction.Here 它会......

我正在尝试使用简单搜索栏的 Materialize Materialize Framework. (Here is fiddle example 实现 autocomplete/search 栏)

  $(document).ready(function(){
    $('input.autocomplete').autocomplete({
      data: {
        "Apple": null,
        "Microsoft": null,
        "Google": 'https://placehold.it/250x250'
      },
    });
  });

现在,我要做的是使用 geojson 功能调用和填充数据,并实现 selected 功能的适合范围。如果我理解正确,我需要保存 selected 功能的范围并将其传递给

map.getView().fit(selectedFeature.getSource().getExtent(), animationOptions);

或者我这样做完全错了吗?

$(document).ready(function() {
function sendItem(val) {
    console.log(val);
}

var animationOptions = {
    duration: 2000,
    easing: ol.easing.easeOut
};

$(function() {
    $.ajax({
        type: 'GET',
        url: 'geojson/jls.geojson',
        dataType: 'json',
        success: function(response) {
            var jls_array = response;
            var features = jls_array.features;
            var jls = {};

            for (var i = 0; i < features.length; i++) {
                var geo = features[i].properties;
                jls[geo['JLS_IME']] = null;
            }
            console.log(jls)
            $('input.autocomplete').autocomplete({
                data: jls,
                limit: 5,
                onAutocomplete: function(txt) {
                    sendItem(txt);
                    map.getView().fit(vectorJLS.getSource().getExtent(), animationOptions);
                }
            });
        }
    });
});
});

这是我的 geojson 对象的示例

{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name":"EPSG:3765" } },
"features": [
{ "type": "Feature", "properties": { "JLS_MB": "00116", "JLS_IME": "BEDEKOVČINA", "JLS_ST": "OP", "JLS_SJ": "Bedekovčina", "ZU_RB": "02", "ZU_IME": "Krapinsko-zagorska", "ZU_SJ": "Krapina", "pov": 51.42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 461117.98, 5108379.85 ], [ 461124.53, 5108368.39 ], [ 461132.37, 5108354.26 ]...

更新 - 解决方案

因此,正如 Dube 同事很好地指出了逻辑和实用的解决方案,他在 geojson 层源中使用简单的 .find( 查找特征和缩放 selected 特征) 方法。

在 ajax 调用

之前,我只用添加的变量调整了一些现有代码
var source_layer = vectorJLS.getSource(); // collecting layer source

$(function() {
    $.ajax({
        type: 'GET',
        url: 'geojson/jls.geojson',
        dataType: 'json'.....

onAutocomplete: function(txt) {
  var feature = source_layer.getFeatures().find(function(f) { return f.get('JLS_IME') === txt; });
  if (feature) {
    const extent = feature.getGeometry().getExtent()
    map.getView().fit(extent);
  }
};

这是我正在尝试迭代的层,并在 select 上放大特征

我不确定你的 map-application 应该如何工作,但我认为你应该使用 Select-Interaction 如果你想处理选定的功能 ('ol/interaction/select') 因为你可以使用所有事件都会触发并为您的选择设置自定义样式。 Select 交互的内容是一个 ol.Collection,其中包含您选择的功能。所以除了你的 Vectorlayer 你还应该实现一个 Select-Interaction:

const selectedItems = new ol.interaction.Select({
        layers: [yourbasicvectorlayer],
        style: new ol.style.Style({...})
    });
//Listen if any new items are pushed into the selection
selectedItems.getFeatures().on('add', function(feature) {
    //for one feature:
    map.getView().fit(feature.getGeometry().getExtent(), AnimationOptions);
    //for multiple features --> so everytime a new is added
    //Create an empty extent like:
    let extent = new ol.extent.createEmpty();
    selectedItems.getFeatures().forEach(feature) {
        //add extent of every feature to the extent
        extent = new ol.extent.extend(extent, feature.getGeometry().getExtent(); 
    }
    map.getView().fit(extent, animationOptions);
})
// Dont forget to add the Select Interaction to the map
map.addInteraction(selectedItems).
//you can fill the selection interaction programmatically
selectedItems.getFeatures().push(yourfeature);

没有测试代码。使用 Select-Interaction 它的开销更多但结构更好。您也可以只使用侦听器中的部分来实现 single-multi 功能方法。 如果我完全误解了,请告诉我:-)

要素本身没有范围,但它的几何有范围:

const extent = feature.getGeometry().getExtent()
map.getView().fit(extent);

但是,到目前为止,您似乎没有 OpenLayers 功能对象,只有一个普通的 json 对象,您在 ajax 响应中获得了它。让我们改造它:

var source = new ol.source.Vector({
features: (new ol.format.GeoJSON({
  featureProjection: "EPSG:3765" // probably not required in your case
})).readFeatures(featureCollection);

您不需要将矢量添加到地图来确定特定特征及其范围:

onAutocomplete: function(txt) {
  var feature = source.getFeatures().find(function(f) { return f.get('JLS_IME') === txt; });
  if (feature) {
    const extent = feature.getGeometry().getExtent()
    map.getView().fit(extent);
  }
};