-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapbox.html
27 lines (26 loc) · 890 Bytes
/
mapbox.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Display a map on a webpage</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<link href="https://api.mapbox.com/mapbox-gl-js/v2.3.1/mapbox-gl.css" rel="stylesheet">
<script src="https://api.mapbox.com/mapbox-gl-js/v2.3.1/mapbox-gl.js"></script>
<style>
body { margin: 0; padding: 0; }
#map { position: absolute; top: 0; bottom: 0; width: 100%; }
</style>
</head>
<body>
<div id="map"></div>
<script>
mapboxgl.accessToken = 'pk.eyJ1IjoiY3B3YW4iLCJhIjoiY2tyNGpidGk4MHozczJubjNmaTc4Njc4OSJ9.H-BEK74dWnL5qdiKMRM4OA';
var map = new mapboxgl.Map({
container: 'map', // container id
style: 'mapbox://styles/cpwan/ckr836aqm2xr917m5p8dwwylz', // style URL
center: [-118.335,34.027], // starting position [lng, lat]
zoom: 9 // starting zoom
});
</script>
</body>
</html>