错误类型错误:无法读取未定义的属性“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 提示窗口中完成
- 创建一个新的应用程序
ng new esriLeafletApp
- 导航到新应用程序
cd esriLeafletApp
npm install --save leaflet
npm install --save esri-leaflet
npm install --save @types/esri-leaflet
npm install --save @types/leaflet
- 更新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);
}
}
- 更新app.component.html文件的内容
<div style="text-align:center">
<h1>
Welcome to {{title}}!
</h1>
</div>
<div id="map"></div>
更新app.component.css文件 的内容
#map { height: 500px; width: 100%; }
构建并运行应用程序
ng serve -o
- 在 Chrome 中查看应用程序
- 检查代码并在检查器控制台中查看错误
请帮忙
有谁知道为什么esri
在undefined
代码块中L.esri.basemapLayer('Streets').addTo(map);
以及我如何修复它?