【发布时间】:2018-12-17 01:35:16
【问题描述】:
我正在使用 Argis 4.8 JS api 开发一个 Angular 应用程序。我需要 Dojo / On 功能。我也没有在编译器中得到错误。但是当我编译时,我收到错误“找不到模块:错误:无法解析'dojo / on'路径”。我不能使用 Dojo 类。我该怎么办?
我的完整代码
import {Component, OnInit, ViewChild, ElementRef, Input, Output, EventEmitter} from '@angular/core';
import {loadModules} from 'esri-loader';
import esri = __esri;
import on = require('dojo/on');
function executeIdentifyTask(event: Event | undefined) {
console.log(event);
}
@Component({
selector: 'app-esri-map',
templateUrl: './esri-map.component.html',
styleUrls: ['./esri-map.component.css']
})
export class EsriMapComponent implements OnInit {
@ViewChild('mapViewNode') private mapViewEl: ElementRef;
constructor() {
}
map: esri.Map;
mapView: esri.MapView;
layer: esri.MapImageLayer;
identifyTask: esri.IdentifyTask;
async initializeMap() {
try {
const [EsriMap, EsriMapView, MapImageLayer, IdentifyTask, IdentifyTaskProperties] = await loadModules([
'esri/Map',
'esri/views/MapView',
'esri/layers/MapImageLayer',
'esri/tasks/IdentifyTask',
'esri/tasks/support/IdentifyParameters'
]);
this.map = new EsriMap({
basemap: 'dark-gray'
});
this.mapView = new EsriMapView({
container: this.mapViewEl.nativeElement,
center: [27.1428, 38.4237],
zoom: 15,
map: this.map
});
this.layer = new MapImageLayer(
{url: 'https://sampleserver6.arcgisonline.com/arcgis/rest/services/Census/MapServer'});
this.map.add(this.layer);
this.mapView.when(function () {
on(this.mapView , 'click' , executeIdentifyTask);
});
} catch (error) {
console.log('We have an error: ' + error);
}
}
ngOnInit() {
this.initializeMap();
}
}
【问题讨论】:
-
不应该像
import { on } from 'dojo'一样导入吗? -
是的,我试过了。但我得到了这个错误。 TS2305:模块“dojo/on”没有导出成员“on”。
-
在安装
dojo typings模块而不是使用参考/// <reference path="../../../node_modules/@types/dojo/index.d.ts" />之后,您能不能尝试一下? -
我安装了模块。编译器似乎也没有问题。当我按下 F12 键时,我也可以进入该功能。但是编译时出现错误。
-
尝试在
script标签中添加.jsindex.html
标签: angular dojo arcgis typescript-typings esri