admin管理员组

文章数量:1327981

Im using MapBox in one of my web aplicatins, nad my goal is to render a basic map on the page.

I have the following script:

<script>
mapboxgl.accessToken = mapToken;
    const map = new mapboxgl.Map({
        container: 'map', // container ID
        style: 'mapbox://styles/mapbox/streets-v11', // style URL
        center: [-74.5, 40], // starting position [lng, lat]
        zoom: 9 // starting zoom
    });
</script>

and to display the map, I use:

<div id='map' style='width: 400px; height: 300px;'></div>

The problem is, when I try to load the page, nothing happens and I get the following error: Uncaught ReferenceError: mapboxgl is not defined

Im using MapBox in one of my web aplicatins, nad my goal is to render a basic map on the page.

I have the following script:

<script>
mapboxgl.accessToken = mapToken;
    const map = new mapboxgl.Map({
        container: 'map', // container ID
        style: 'mapbox://styles/mapbox/streets-v11', // style URL
        center: [-74.5, 40], // starting position [lng, lat]
        zoom: 9 // starting zoom
    });
</script>

and to display the map, I use:

<div id='map' style='width: 400px; height: 300px;'></div>

The problem is, when I try to load the page, nothing happens and I get the following error: Uncaught ReferenceError: mapboxgl is not defined

Share Improve this question asked Nov 15, 2021 at 15:31 Artiom OArtiom O 4751 gold badge10 silver badges21 bronze badges 1
  • 2 not the easiest thing to find, but you should refer to their quick start guides - it will get you started with a basic map. – Randy Casburn Commented Nov 15, 2021 at 15:35
Add a ment  | 

4 Answers 4

Reset to default 4

I fixed the problem just by including this:

<script src='https://api.mapbox./mapbox-gl-js/v2.6.0/mapbox-gl.js'></script>
    <link href='https://api.mapbox./mapbox-gl-js/v2.6.0/mapbox-gl.css' rel='stylesheet' />

in the head of the HTML file.

2022 Update

This was what worked for me

<script src='https://api.tiles.mapbox./mapbox-gl-js/v2.9.2/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox./mapbox-gl-js/v2.9.2/mapbox-gl.css' rel='stylesheet' />

Also you add this to your block head of your pug file if you're doing templating with pug library.

script(src='https://api.mapbox./mapbox-gl-js/v2.9.1/mapbox-gl.js')
link(href='https://api.mapbox./mapbox-gl-js/v2.9.1/mapbox-gl.css' rel='stylesheet')

2024 update

v2.9.1 has more security and requires accurate header configurations to work. In my node js and express app, using helmet to set http headers this is the configuration that worked for me.

const helmet = require('helmet');

// ...
app.use(
  helmet({
    contentSecurityPolicy: {
      directives: {
        // ... other directives
"script-src": [
          "'self'", // allow scripts from your own domain
"'unsafe-inline'", // allow inline scripts (you may want to remove this depending on your needs)
"https://api.mapbox.", // allow scripts from the Mapbox CDN
],
        "worker-src": [
          "'self'", // allow web workers from your own domain
"http://localhost:3000", // allow web workers from the current host (development environment)
"https://api.mapbox.", // allow web workers from the Mapbox CDN
"blob:" // allow web workers from blob URLs
],
        "connect-src": [
          "'self'", // allow connections to your own domain
"https://api.mapbox.", // allow connections to the Mapbox API
"https://events.mapbox." // allow connections to Mapbox events
],
      },
    },
  })
);

// ...

refer to older version v0.54.0, to have it run without errors and without header configurations.

本文标签: javascriptMapBox Uncaught ReferenceError mapboxgl is not definedStack Overflow