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

将地图设置为angular6/openlayers中的变量

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

    我使用Angular6和openlayers 5.1.3。我做的 npm install ol --save 成功,然后在我的角度我做到了

    import OlMap from 'ol/map';
    import OlXYZ from 'ol/source/xyz';
    import OlTileLayer from 'ol/layer/tile';
    import OlView from 'ol/View';
    import * as OlProj from 'ol/proj';
    import 'ol/ol.css';
    
    export class myComponent {
    
     olmap: OlMap;
     source: OlXYZ;
     layer: OlTileLayer;
     view: OlView;
      //other, non-ol stuff
       loading: boolean = false;
       myname: String;
    
      ngOnInit() {
    
        this.source = new OlXYZ({
          url:'http://tile.stamen.com/terrain/{z}/{x}/{y}.jpg'
        });
    
        this.layer = new OlTileLayer({
          source: this.source
        });
    
        this.view = new OlView({
          center: OlProj.fromLonLat([6.661594, 50.433237]),
          zoom: 3,
        });
    
        const olmap = new OlMap({
          target: 'map',
          layers: [this.layer],
          view: this.view
        });
    
    
        navigator.geolocation.getCurrentPosition(function(pos) {
          const coords = OlProj.fromLonLat([pos.coords.longitude, pos.coords.latitude]);
          olmap.getView().animate({center: coords, zoom: 10});
        });
    
      }//ngOnInit
    

    这很好,但问题是如果我

        this.olmap = new OlMap({
          target: 'map',
          layers: [this.layer],
          view: this.view
        });
    

    然后

        navigator.geolocation.getCurrentPosition(function(pos) {
          const coords = OlProj.fromLonLat([pos.coords.longitude, pos.coords.latitude]);
          this.olmap.getView().animate({center: coords, zoom: 10});
        });
    

    我无法读取引用此的空属性“olmap” this.olmap.getView().animate({center: coords, zoom: 10});

    为什么我不能提到 olmap this.olmap ,因为我正在定义它和Typescript中的其他变量?我再也没有这个问题了,我总是获取 this.x

    为什么我会犯这个错误?这是什么意思?

    谢谢

    1 回复  |  直到 6 年前
        1
  •  1
  •   Callum    6 年前

    您所看到的问题涉及JavaScript词法范围。

    在您的角度6项目中,可以使用ES6箭头函数访问父词法范围,您的代码现在应该像您预期的那样运行:

    navigator.geolocation.getCurrentPosition((pos) => {
      const coords = OlProj.fromLonLat([pos.coords.longitude, pos.coords.latitude]);
      this.olmap.getView().animate({center: coords, zoom: 10});
    });
    

    进一步阅读:

    All You Need to Not Know About ES2015 Arrow Functions and “this”
    You Don't Know JS: Scope & Closures - Appendix C: Lexical-this

    推荐文章