-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmapbox_maps_api.html
More file actions
32 lines (29 loc) · 1.05 KB
/
mapbox_maps_api.html
File metadata and controls
32 lines (29 loc) · 1.05 KB
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
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mapbox</title>
<script src='https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.js'></script>
<link href='https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.css' rel='stylesheet'/>
<link rel="stylesheet" href="css/mapbox_maps_api.css">
</head>
<body>
<header><h1>My Favorite Restaurants</h1></header>
<div class="form">
<label for="zoom-level">Select Zoom Level</label>
<select name="zoom-level" id="zoom-level" autocomplete="off">
<option value="choose">choose zoom</option>
<option value="5">5</option>
<option value="10">10</option>
<option value="15">15</option>
</select>
<label for="address">input address</label>
<input type="text" name="address" id="address" placeholder="address">
<button id="submit">submit</button>
<button id="hide">Hide Markers</button>
</div>
<script src="js/keys.js"></script>
<script src="js/mapbox_utilities.js"></script>
<script src="js/mapbox_maps_api.js"></script>
</body>
</html>