NOTE: These instructions apply to trying to use the ArcGIS API for JavaScript in an Angular 2 application created w/ angular-cli. If you're working with more recent versions of Angular, you should use https://github.com/Esri/esri-loader instead.
-
Create a new Angular app by using angular-cli to generate a new project
-
Install angular2-esri-loader
npm install angular2-esri-loader esri-loader --save
- Generate a new component with
ng g component esri-map
and useEsriLoaderService
to show a map
- copy code from
esri-map.component.ts
andesri-map.component.css
esri-map.component.html
below
- Add the following to the bottom of the
import
statements in your application's module:
import { EsriLoaderService } from 'angular2-esri-loader';
import { EsriMapComponent } from './esri-map/esri-map.component';
- Add the following to your application's
declarations
:
EsriMapComponent
- Add the following to your application's
providers
to register angular2-esri-loader'sEsriLoaderService
:
EsriLoaderService
- Add the following to the end of your application component's template:
<app-esri-map></app-esri-map>
That's it, run the app with ng serve
- Install the types
npm install @types/arcgis-js-api --save-dev
- Add "arcgis-js-api" to
compilerOptions.types
in src/tsconfig.app.json and src/tsconfig.spec.json - Replace the contents of esri-map.component.ts with the contents of
esri-map-with-types.component.ts
Re-run the app with ng serve
Hi, i have a problem trying to use other modules that not belogs to Map, and MapView. for example SimpleMakerSymbol.
i can load the modules in this.esriLoader.loadModules method? right now, i get error cannot find name
public ngOnInit() {
// only load the ArcGIS API for JavaScript when this component is loaded
return this.esriLoader.load({
// use a specific version of the JSAPI
url: 'https://js.arcgis.com/4.4/'
}).then(() => {
// load the needed Map and MapView modules from the JSAPI
this.esriLoader.loadModules([
'esri/Map',
'esri/views/MapView',
'esri/geometry/Polyline',
'esri/symbols/SimpleMarkerSymbol',
'esri/Graphic'
]).then(([
Map,
MapView
]) => {
const mapProperties: any = {
basemap: 'topo',