代码之家  ›  专栏  ›  技术社区  ›  Lauren

在带有ngx传单的featureGroup上使用getBounds/fitBounds

  •  1
  • Lauren  · 技术社区  · 6 年前

    在我正在创建的应用程序中,我动态地将点组添加到嵌套地图单击事件中引用的featureGroup。所以要点是,我有一张显示了不同地区的国家地图。单击一个区域将地图边界与该多边形匹配,并显示与该多边形关联的点,比如城市。单击单个点/城市会进一步深入,并显示与第一个单击点关联的另一组点,例如选定城市中的所有库。

    问题是,一旦我的最后一组点(库)位于featureGroup中(由于单击事件的嵌套性质,这是必要的),我就无法在该组上使用fitBounds/getBounds。以下是一个简单的例子(基于ngx传单教程ngcli教程):

    应用程序。组成部分html

    <div class="map"
      leaflet
      (leafletMapReady)="onMapReady($event)"
      [leafletOptions]="options"></div>
    

    应用程序。组成部分ts

    import { Component, OnInit } from '@angular/core';
    
    import * as L from 'leaflet';
    
    @Component({
      selector: 'app-root',
      templateUrl: './app.component.html',
      styleUrls: ['./app.component.css']
    })
    export class AppComponent implements OnInit {
    
      googleMaps = L.tileLayer('http://{s}.google.com/vt/lyrs=m&x={x}&y={y}&z={z}', {
        maxZoom: 20,
        subdomains: ['mt0', 'mt1', 'mt2', 'mt3'],
        detectRetina: true
      });
    
      summit = L.marker([ 46.8523, -121.7603 ], {
        icon: L.icon({
          iconSize: [ 25, 41 ],
          iconAnchor: [ 13, 41 ],
          iconUrl: 'leaflet/marker-icon.png',
          shadowUrl: 'leaflet/marker-shadow.png'
        })
      });
      paradise = L.marker([ 46.78465227596462,-121.74141269177198 ], {
        icon: L.icon({
          iconSize: [ 25, 41 ],
          iconAnchor: [ 13, 41 ],
          iconUrl: 'leaflet/marker-icon.png',
          shadowUrl: 'leaflet/marker-shadow.png'
        })
      });
    
      fGroup = L.featureGroup();
    
      options = {
        layers: [ this.googleMaps, this.fGroup ],
        zoom: 7,
        center: L.latLng([ 46.879966, -121.726909 ])
      };
    
      onMapReady(map: L.Map) {
        this.paradise.addTo(this.fGroup);
        this.summit.addTo(this.fGroup);
        console.log(this.fGroup);
      }
    
      ngOnInit(){
    
      }
    }
    

    我曾经 console.log 要显示featureGroup的输出,请执行以下操作:

    NewClass {options: {…}, _layers: {…}, _initHooksCalled: true, _leaflet_id: 183, _mapToAdd: NewClass, …}
    options: {}
    _initHooksCalled: true
    _layers: {184: NewClass, 186: NewClass}
    _leaflet_id: 183
    _map: NewClass {options: {…}, _container: div.map.leaflet-container.leaflet-touch.leaflet-retina.leaflet-fade-anim.leaflet-grab.leaflet-touch-…, _leaflet_id: 2, _containerId: 3, _fadeAnimated: true, …}
    _mapToAdd: NewClass {options: {…}, _container: div.map.leaflet-container.leaflet-touch.leaflet-retina.leaflet-fade-anim.leaflet-grab.leaflet-touch-…, _leaflet_id: 2, _containerId: 3, _fadeAnimated: true, …}
    _zoomAnimated: true
    __proto__: NewClass
    

    正如你所见,没有 _bounds 方法可用。有没有办法在ngx传单中找到一个功能组?

    1 回复  |  直到 6 年前
        1
  •  2
  •   Lauren    6 年前

    正如@ghybs指出的,使用 getBounds() 直接在功能组上 在这个例子中工作。在我真正的应用程序中,事件是嵌套的,所以 fitBounds() 工作是用 this.changeDetector.detectChanges() this documentation .

    推荐文章