首页 > 解决方案 > Angular Cli - 找不到 Dojo 模块

问题描述

我正在使用 Argis 4.8 JS api 开发一个角度应用程序。我需要 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();
  }

}

标签: angulardojoarcgistypescript-typingsesri

解决方案


我知道我参加聚会有点晚了,但是对于遇到类似问题的其他人,我发现这些错误被描述为可以按 F12 键并找到类型但无法正确编译的错误,通常是由于未将类型types: []放在tsconfig.app.json.

我在导入时遇到了类似的问题,__esri并不断收到以下错误ERROR in src/app/esri-map/esri-map.component.ts(16,15): error TS2503: Cannot find namespace '__esri'.,添加"arcgis-js-api"到 mytsconfig.app.json后,我的问题得到了解决。


推荐阅读