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

如何更改NGX传单上的坐标运行时?

  •  0
  • John  · 技术社区  · 6 年前

    在运行时更改NGX传单地图坐标还有其他选择吗? 这在谷歌地图上是可能的,我也在试着用传单做同样的事。

    对传单的更改在初始设置后将被忽略。这是因为这些选项被传递到映射构造函数中,所以无论如何都不能更改它们。因此,在创建映射之前,请确保对象存在。您将希望在ngoninit中创建该对象,或使用*ngif隐藏map dom元素,直到可以创建选项对象。

    组件:

      private   options = {
          layers: [
            tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
              attribution: '© OpenStreetMap contributors'
            })
          ],
          zoom: 7,
          center: latLng([ 46.879966, -121.726909 ])
        };
    

    HTML:

    <div style="height: 500px;"
        leaflet
         [leafletOptions]="(options)"
         ></div>
    
    1 回复  |  直到 6 年前
        1
  •  0
  •   kboul    6 年前

    加载映射时,需要获取对该映射的引用,然后使用该引用更改视图。

    成分

    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: '&copy; 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