Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set mapboxgl.accessToken in Angular-project?

I'm trying to make an example on StackBlitz with mapbox-gl. How can I set the accessToken?

The editor states "Cannot assign to 'accessToken' because it is a constant or a read-only property".

I already tried the possible solutions from another question: Mapbox-gl typing won't allow accessToken assignment

import { Component, ViewChild, ElementRef } from '@angular/core';
import * as mapboxgl from 'mapbox-gl';

@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {

  @ViewChild('map') mapElement: ElementRef;
  map: mapboxgl.Map;

  ngOnInit() {
    mapboxgl.accessToken = '<token>';
    this.map = new mapboxgl.Map({
      container: this.mapElement.nativeElement,
      style: 'mapbox://styles/mapbox/streets-v11',
      center: [-77.04, 38.907],
      zoom: 11.15
    });
  }
}

Full code example: https://stackblitz.com/edit/angular-9djiw2

like image 997
Kees Boogert Avatar asked Mar 27 '19 13:03

Kees Boogert


3 Answers

Finally solved this problem by replacing

import * as mapboxgl from 'mapbox-gl';

with

const mapboxgl = require('mapbox-gl');

I don't know why this works (despite some red underlines). It could be specific to StackBlitz. I will leave the example there, but will disable the key from Mapbox.

like image 62
Kees Boogert Avatar answered Nov 12 '22 16:11

Kees Boogert


Another trick is to access token property as following: (mapboxgl as any).accessToken = "your token"

like image 5
Ivan Popkov Avatar answered Nov 12 '22 16:11

Ivan Popkov


I was using typescript and I wanted to keep using import. So finally it works with:

import { Map } from "mapbox-gl/dist/mapbox-gl"
import * as mapboxgl from "mapbox-gl/dist/mapbox-gl"

and then, to create the instance of the map:

mapboxgl.accessToken = "YOUR_API_KEY_BLA_BLA_BLA"
this.map = new Map({
    container: "mapId",
    style: "mapbox://styles/mapbox/light-v9",
    zoom: 5,
    center: [-78.880453, 42.897852]
})

and to show a full example. In html:

<div id="mapId"></div>

If I am doing something wrong please tell me.

like image 2
J.S.R - Silicornio Avatar answered Nov 12 '22 16:11

J.S.R - Silicornio