Skip to content

Commit cd30fc7

Browse files
authored
Merge pull request #454 from louis-e/mapbox-token
Fix expired mapbox token
2 parents 5de8f1c + 62c3f94 commit cd30fc7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gui-src/js/bbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ $(document).ready(function () {
461461
// Have to init the projection input box as it is used to format the initial values
462462
$("#projection").val(currentproj);
463463

464-
L.mapbox.accessToken = 'pk.eyJ1IjoiY3Vnb3MiLCJhIjoiY2p4Nm43MzA3MDFmZDQwcGxsMjB4Z3hnNiJ9.SQbnMASwdqZe6G4n6OMvVw';
464+
L.mapbox.accessToken = 'pk.eyJ1IjoibG91aXMtZSIsImEiOiJjbWF0cWlycjEwYWNvMmtxeHFwdDQ5NnJoIn0.6A0AKg0iucvoGhYuCkeOjA';
465465
map = L.mapbox.map('map').setView([50.114768, 8.687322], 4).addLayer(L.mapbox.styleLayer('mapbox://styles/mapbox/streets-v11'));
466466

467467
rsidebar = L.control.sidebar('rsidebar', {

src/ground.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const BASE_HEIGHT_SCALE: f64 = 0.72;
1111

1212
/// Mapbox API access token for terrain data
1313
const MAPBOX_PUBKEY: &str =
14-
"pk.eyJ1IjoiY3Vnb3MiLCJhIjoiY2p4Nm43MzA3MDFmZDQwcGxsMjB4Z3hnNiJ9.SQbnMASwdqZe6G4n6OMvVw";
14+
"pk.eyJ1IjoibG91aXMtZSIsImEiOiJjbWF0cWlycjEwYWNvMmtxeHFwdDQ5NnJoIn0.6A0AKg0iucvoGhYuCkeOjA";
1515
/// Minimum zoom level for terrain tiles
1616
const MIN_ZOOM: u8 = 10;
1717
/// Maximum zoom level for terrain tiles

0 commit comments

Comments
 (0)