最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Failed to load resource: the server responded with a status of 401 for mapbox api - Stack Overflow

programmeradmin1浏览0评论

I have followed leaflet "get started" tutorial

but I get an 401 error while trying to load the tiles

.mapbox.project.id/13/4093/2724.png?access_token=your.mapbox.public.access.token Failed to load resource: the server responded with a status of 401 (Unauthorized)

what am I missing?

my html

<html>

<head>
  <title></title>
  <link rel="stylesheet" href="elad_map.css" />
  <link rel="stylesheet" href=".7.7/leaflet.css" />
</head>

<body>
  <div id="map"></div>

  <script src=".7.7/leaflet.js"></script>
  <script type="text/javascript" src="elad_map.js"></script>
</body>

</html>

I have followed leaflet "get started" tutorial

but I get an 401 error while trying to load the tiles

https://api.tiles.mapbox./v4/your.mapbox.project.id/13/4093/2724.png?access_token=your.mapbox.public.access.token Failed to load resource: the server responded with a status of 401 (Unauthorized)

what am I missing?

my html

<html>

<head>
  <title></title>
  <link rel="stylesheet" href="elad_map.css" />
  <link rel="stylesheet" href="http://cdn.leafletjs./leaflet/v0.7.7/leaflet.css" />
</head>

<body>
  <div id="map"></div>

  <script src="http://cdn.leafletjs./leaflet/v0.7.7/leaflet.js"></script>
  <script type="text/javascript" src="elad_map.js"></script>
</body>

</html>

document.onload = loadMap();

function loadMap() {
  var map = L.map('map').setView([51.505, -0.09], 13);


  L.tileLayer('https://api.tiles.mapbox./v4/{id}/{z}/{x}/{y}.png?access_token={accessToken}', {
    attribution: 'Map data &copy; <a href="http://openstreetmap">OpenStreetMap</a> contributors, <a href="http://creativemons/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="http://mapbox.">Mapbox</a>',
    maxZoom: 18,
    id: 'your.mapbox.project.id',
    accessToken: 'your.mapbox.public.access.token'
  }).addTo(map);


  var circle = L.circle([51.508, -0.11], 500, {
    color: 'red',
    fillColor: '#f03',
    fillOpacity: 0.5
  }).addTo(map);

  var polygon = L.polygon([
    [51.509, -0.08],
    [51.503, -0.06],
    [51.51, -0.047]
  ]).addTo(map);

}

Share Improve this question asked Jan 28, 2016 at 11:59 Elad BendaElad Benda 36.7k92 gold badges283 silver badges493 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 3

What forgot to swap out the id and accessToken:

id: 'your.mapbox.project.id',
accessToken: 'your.mapbox.public.access.token'

You'll need to change the accessToken to the one you get when registering with Mapbox and the id to a mapbox project id like mapbox.streets, mapbox-outdoors, mapbox-satellite or a custom id you get when creating a custom map via Mapbox Studio Classic.

document.onload = loadMap();

function loadMap() {
  var map = L.map('map').setView([51.505, -0.09], 13);


  L.tileLayer('https://api.tiles.mapbox./v4/{id}/{z}/{x}/{y}.png?access_token={accessToken}', {
    attribution: 'Map data &copy; <a href="http://openstreetmap">OpenStreetMap</a> contributors, <a href="http://creativemons/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="http://mapbox.">Mapbox</a>',
    maxZoom: 18,
    id: 'your.mapbox.project.id',
    accessToken: 'your.mapbox.public.access.token'
  }).addTo(map);


  var circle = L.circle([51.508, -0.11], 500, {
    color: 'red',
    fillColor: '#f03',
    fillOpacity: 0.5
  }).addTo(map);

  var polygon = L.polygon([
    [51.509, -0.08],
    [51.503, -0.06],
    [51.51, -0.047]
  ]).addTo(map);

}

发布评论

评论列表(0)

  1. 暂无评论