加载映射时,需要获取对该映射的引用,然后使用该引用更改视图。
成分
import * as L from 'leaflet';
import {
latLng,
tileLayer
} from 'leaflet';
map: L.Map;
options = {
layers: [
tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© OpenStreetMap contributors'})
],
zoom: 7,
center: latLng([ 46.879966, -121.726909 ])
};
// get the reference to the map
onMapReady(map: L.Map) {
this.map = map;
}
// change the view using that map reference to another location
changeView() {
this.map.panTo(new L.LatLng(40.737, -73.923));
}
模板
<div style="height: 500px;"
leaflet
[leafletOptions]="options"
(leafletMapReady)="onMapReady($event)">
</div>
<button (click)="changeView()">Change view</button>
Demo