-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmapbox_maps_api.html
More file actions
29 lines (24 loc) · 883 Bytes
/
mapbox_maps_api.html
File metadata and controls
29 lines (24 loc) · 883 Bytes
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
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>mapbox mapbox m a p b o x</title>
<!-- mapbox API -->
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.1/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.1/mapbox-gl.css' rel='stylesheet' />
<link rel="stylesheet" href="css/mapbox-exer.css">
</head>
<body>
<h1>eats</h1>
<select id="zoomlevel">
<option selected value="">~ Zoom In and Out ~</option>
<option value= "5" id = "lowzoom">Big Picture</option>
<option value= "10" id = "medzoom">Close Up</option>
<option value= "20" id = "bigzoom">See Their Teeth</option></select>
<div id="map"></div>
<!--custom js / keys js-->
<script src="js/keys.js"></script>
<script src="js/mapbox-geocoder-utils.js"></script>
<script src="js/mapbox_maps_api.js"></script>
</body>
</html>