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
@jrvaliente @jhonemillan @tyler-austin
I apologize. I have not been getting any notifications about comments on this gist.
@jhonemillan
You need to include the other classes in the destructured array that gets passed to .
then()
@tyler-austin
I'm not doing any work in Angular, so I can't really advise on best practices for inter-component communication. In the Ember apps I work on, we isolate all mapping code in services and components share access to the map through the service.