使用bringToFront()来设置不在具有ngx-leaflet的图层事件中的传单图层

时间:2018-06-15 17:07:01

标签: javascript angular leaflet bringtofront ngx-leaflet

我有一个想要过滤的多面体,放入独特的图层,并设置不同的样式。我加载geoJson,应用常规样式,并使用onEachFeature根据条件将图层放入featureGroups。仍在onEachFeature内,我将样式应用于每个featureGroup。这很好用。

问题是多边形笔划是重叠的,这是leaflet / svg中解决的常见问题。我知道使用bringToFront解决这个问题,但我似乎无法在我的ngx-leaflet角度应用程序中使用它。当我在点击事件中测试bringToFront时,它会起作用。但我希望将多边形样式本身(带有NO事件)放在前面。

以下是一些示例代码(从ngx-leaflet-tutorial-ngcli绘图):

states.geojson (在/assets目录中)

{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "adm1_code": "Admin-1 scale rank", "diss_me": 2, "name": "USA-3520", "name_len": 3520 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.006268677999884, 31.327184550000098 ], [ -114.822108114999963, 32.500239563000022 ], [ -114.720794720599827, 32.7245646349499 ], [ -114.535858197098094, 32.738236510006914 ], [ -114.460736126870756, 32.854911313806042 ], [ -114.501727338146111, 33.019413268207757 ], [ -114.696746868872879, 33.089359557497573 ], [ -114.7235046809962, 33.32124432236759 ], [ -114.726898235864894, 33.411478697383984 ], [ -114.532611127401594, 33.568558775367194 ], [ -114.515936321603931, 33.963627135284071 ], [ -114.119061321722597, 34.293216978480757 ], [ -114.368963665640649, 34.471537291312927 ], [ -114.616961713112516, 34.879300963268804 ], [ -114.638861126739585, 35.123539243841037 ], [ -114.571942181186671, 35.212552915984247 ], [ -114.741278119289746, 36.013627134784429 ], [ -114.707147260337763, 36.108841977775057 ], [ -114.554779095678725, 36.16052654906099 ], [ -114.123895306323277, 36.045853697290283 ], [ -114.042010541153502, 36.219779478340229 ], [ -114.040203900289725, 37.003129088436651 ], [ -109.046624798995254, 36.999808775254735 ], [ -109.047430462999856, 31.327391256000041 ], [ -111.006268677999884, 31.327184550000098 ] ] ] } },
{ "type": "Feature", "properties": { "adm1_code": "Admin-1 scale rank", "diss_me": 2, "name": "USA-3524", "name_len": 3524 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -108.137503214999924, 31.777544657000064 ], [ -108.215121216999904, 31.777751364000025 ], [ -108.214811157999918, 31.327442932000068 ], [ -109.047430462999856, 31.327391256000041 ], [ -109.046624798995254, 36.999808775254735 ], [ -103.000799603418955, 36.999808775254735 ], [ -103.065594524767505, 32.00168865790522 ], [ -106.66217655600326, 32.000297056863644 ], [ -106.506052409999938, 31.770258281000068 ], [ -108.137503214999924, 31.777544657000064 ] ] ] } },
{ "type": "Feature", "properties": { "adm1_code": "Admin-1 scale rank", "diss_me": 2, "name": "USA-3526", "name_len": 3526 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.05023808032314, 41.999833189050435 ], [ -111.049920696982554, 40.999833189250239 ], [ -109.046331829550297, 40.999833189250239 ], [ -109.046624798995254, 36.999808775254735 ], [ -114.040203900289725, 37.003129088436651 ], [ -114.042547649554365, 42.000077329804924 ], [ -111.05023808032314, 41.999833189050435 ] ] ] } },
{ "type": "Feature", "properties": { "adm1_code": "Admin-1 scale rank", "diss_me": 2, "name": "USA-3522", "name_len": 3522 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.046331829550297, 40.999833189250239 ], [ -102.051800580432428, 40.99958904939507 ], [ -102.039569135107456, 36.999808775254735 ], [ -109.046624798995254, 36.999808775254735 ], [ -109.046331829550297, 40.999833189250239 ] ] ] } }
]
}

app.component.html

<div class="map"
     leaflet
     [leafletFitBounds]="fitBounds"
     [leafletLayers]="layers">
</div>

app.component.ts

import { Component, OnInit } from '@angular/core';
import { HttpClient } from '@angular/common/http';

import * as L from 'leaflet';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {

  tiles = L.tileLayer('http://{s}.google.com/vt/lyrs=m&x={x}&y={y}&z={z}', {
    maxZoom: 20,
    subdomains: ['mt0', 'mt1', 'mt2', 'mt3'],
    detectRetina: true
  });

  layers: L.Layer[];
  redGroup = L.featureGroup();
  blueGroup = L.featureGroup();
  fitBounds = null;

  constructor(
    private http: HttpClient,
  ) { }

  ngOnInit() {

    this.http.get<any>('assets/states.geojson')
      .subscribe(data => {
        const tmp = L.geoJSON(data, {
          style: () => ({
            weight: 2,
            fillOpacity: 1,
            opacity: 1
          }),
          onEachFeature: this.onEachFeature.bind(this)
        });

        this.fitBounds = L.geoJSON(data).getBounds();
        // this.redGroup.bringToFront();
        this.layers = [ this.tiles, this.redGroup, this.blueGroup ];
        // this.layers = [ this.tiles, this.redGroup.bringToFront(), this.blueGroup ];
        // this.redGroup.bringToFront();
      });
  }

  onEachFeature(feature, layer) {

    if (feature.properties.name_len <= 3522) {
      layer.addTo(this.redGroup);
      // this.redGroup.bringToFront();
    } else {
      layer.addTo(this.blueGroup);
    }

    this.blueGroup.setStyle({fillColor: 'lightblue', color: 'blue'});

    this.redGroup.setStyle({
      fillColor: 'pink', color: 'red'
    });

    this.redGroup.bringToFront();

    layer.on('click', (e) => {
      e.target.setStyle({color: 'yellow'}).bringToFront();
    });
  }
}

我评论了所有将redGroup推到前面的失败尝试。如您所见,当您单击多边形时,黄色笔划将被bringToFront推到前面。但是在我初始加载时,我希望redGroup的红色笔划显示在blueGroup的蓝色笔划之上。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

Per @ reblace的指导,我需要在onEachFeature底部超时后调用代码,如下所示:

setTimeout(() => {
  this.redGroup.bringToFront();
}, 0);
相关问题