diff --git a/examples/quick-start.md b/examples/quick-start.md index 37c74650..145092ac 100644 --- a/examples/quick-start.md +++ b/examples/quick-start.md @@ -54,8 +54,8 @@ Next we'll add a tile layer to add to our map, in this case it's a Mapbox Street
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token={accessToken}', {
attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="http://mapbox.com">Mapbox</a>',
maxZoom: 18,
- id: '[your.mapbox.project.id](https://www.mapbox.com/projects/)',
- accessToken: '[your.mapbox.public.access.token](https://www.mapbox.com/account/apps/)'
+ id: 'your.mapbox.project.id',
+ accessToken: 'your.mapbox.public.access.token'
}).addTo(map);
Make sure all the code is called after the `div` and `leaflet.js` inclusion. That's it! You have a working Leaflet map now.