Angular wrapper for mapbox-gl-js. It exposes a bunch of components meant to be simple to use with Angular.
v1.X : Angular 5 & 6 (rxjs 5)
v2.X : Angular 6 & 7 (rxjs 6)
v3.X : Angular 7.2
v4.X : Angular 8 - 10 (rxjs >= 6.5)
v5.X - 6.X : Angular 9 - 11 (rxjs >= 6.5)
v7.X : Angular 12 (rxjs >= 6.6)
v8.X : Angular 13
v9.X : Angular 14
v10.X : Angular 16
Include the following components:
- mgl-map
- mgl-layer
- mgl-geojson-source
- mgl-canvas-source
- mgl-image-source
- mgl-raster-dem-source
- mgl-raster-source
- mgl-vector-source
- mgl-video-source
- mgl-image
- mgl-control with builtin control:
- mglScale
- mglFullscreen
- mglAttribution
- mglGeolocate
- mglNavigation
- mgl-marker
- mgl-popup
- mgl-markers-for-clusters
(Documentation here: https://wykks.github.io/ngx-mapbox-gl/doc)
npm install ngx-mapbox-gl mapbox-gl
yarn add ngx-mapbox-gl mapbox-gl
If using typescript add mapbox-gl types
npm install @types/mapbox-gl --save-dev
yarn add @types/mapbox-gl --dev
Load the CSS of mapbox-gl
For example, with angular-cli add this in angular.json
:
"styles": [
...
"mapbox-gl/dist/mapbox-gl.css"
],
Or in the global CSS file (called styles.css
for example in angular-cli):
@import '~mapbox-gl/dist/mapbox-gl.css';
Then, in your app's main module (or in any other module), import the NgxMapboxGLModule
:
...
import { NgxMapboxGLModule } from 'ngx-mapbox-gl';
@NgModule({
imports: [
...
NgxMapboxGLModule.withConfig({
accessToken: 'TOKEN', // Optional, can also be set per map (accessToken input of mgl-map)
})
]
})
export class AppModule {}
How to get a Mapbox token: https://www.mapbox.com/help/how-access-tokens-work/
Note: mapbox-gl
cannot work without a token anymore.
If you want to keep using their services then make a free account, generate a new token for your application and use it inside your project.
Display a map:
import { Component } from '@angular/core';
@Component({
template: `
<mgl-map
[style]="'mapbox://styles/mapbox/streets-v9'"
[zoom]="[9]"
[center]="[-74.5, 40]"
>
</mgl-map>
`,
styles: [
`
mgl-map {
height: 100%;
width: 100%;
}
`,
],
})
export class DisplayMapComponent {}