1

错误类型错误:无法读取未定义的属性“basemapLayer”

我使用 Angular CLI 构建了一个非常基本的应用程序。当我使用ng serve -o一切成功构建和运行应用程序时。但是,当我在 Chrome 中查看应用程序时,地图部分不会加载。进一步检查页面,我在控制台中看到了这个错误。

ERROR TypeError: Cannot read property 'basemapLayer' of undefined

设置

  • 角 4
  • 铬 61
  • 传单 1.2.0
  • esri 传单 2.1.1
  • 1.2 的类型/传单
  • 2.1 的类型/esri 传单。

重现错误的步骤:

这些步骤假设您已经安装了angular CLI

步骤 1-6 和 10 在终端/cmd 提示窗口中完成

  1. 创建一个新的应用程序ng new esriLeafletApp
  2. 导航到新应用程序cd esriLeafletApp
  3. npm install --save leaflet
  4. npm install --save esri-leaflet
  5. npm install --save @types/esri-leaflet
  6. npm install --save @types/leaflet
  7. 更新app.component.ts文件的内容

import { Component, OnInit } from '@angular/core';

import * as L from 'leaflet';
import 'esri-leaflet';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})

export class AppComponent implements OnInit {
  title = 'app';

  constructor() { }

  ngOnInit () {
    const map = L.map('map').setView([51.505, -0.09], 13);
    L.esri.basemapLayer('Streets').addTo(map);
  }
}

  1. 更新app.component.html文件的内容

<div style="text-align:center">
    <h1>
       Welcome to {{title}}!
    </h1>
</div>
<div id="map"></div>

  1. 更新app.component.css文件 的内容

    #map {
      height: 500px;
      width: 100%;
    }

  2. 构建并运行应用程序ng serve -o

  3. 在 Chrome 中查看应用程序
  4. 检查代码并在检查器控制台中查看错误

请帮忙

有谁知道为什么esriundefined代码块中L.esri.basemapLayer('Streets').addTo(map);以及我如何修复它?

4

1 回答 1

0

似乎问题在于 esri-leaflet (@types/esri-leaflet) 的类型文件,而不是 esri-leaflet 本身。我在DefinitelyTyped github 上打开了一个问题。


解决方法:

  • 从 package.json 和 node_modules 中删除 ESRI 类型
  • 导入 esri:import * as esri from 'esri-leaflet';
  • 直接使用 esri(即不作为 Leaflet 的扩展)。
  • 仍然可以毫无问题地使用传单打字。

import { Component, OnInit } from '@angular/core';

import * as L from 'leaflet';
import * as esri from 'esri-leaflet';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})

export class AppComponent implements OnInit {
  title = 'app';

  constructor() { }

  ngOnInit () {
    const map = L.map('map', {
      maxZoom: 18,
      minZoom: 0
    }).setView([51.505, -0.09], 15);

    const esriLayer = esri.basemapLayer('Imagery');
    map.addLayer(esriLayer);
  }
}

于 2017-09-19T18:20:19.907 回答