在我正在创建的应用程序中,我动态地将点组添加到嵌套地图单击事件中引用的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传单中找到一个功能组?