forked from LaneMiller/Spots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (67 loc) · 2.88 KB
/
index.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<!-- js files -->
<script src="src/keys.js" charset="utf-8"></script>
<script src="src/index.js" charset="utf-8"></script>
<!-- fonts -->
<link href='https://fonts.googleapis.com/css?family=Bowlby One SC' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css?family=Ubuntu:400" rel="stylesheet">
<!-- css files -->
<link rel="stylesheet" href="index.css">
<!-- map dependencies -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css"
integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.3.1/dist/leaflet.js"
integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw=="
crossorigin=""></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet-control-geocoder/dist/Control.Geocoder.css" />
<script src="https://unpkg.com/leaflet-control-geocoder/dist/Control.Geocoder.js"></script>
</head>
<body>
<!-- for overlay displaying -->
<div id="overlay">
<div id="step1" class="overlay-text" >Step 1. Click on the location icon to use your current address, or enter an address in the input box.</div>
<div id="step2" class="overlay-text" >Step 2. Add as many origin points as you like, and we will find best meeting spot for your group.</div>
<div id="step3" class="overlay-text" >Step 3. Choose one of the categories to find The Spot you should go to!</div>
<div id="text" class="overlay-text" >Click anywhere to get started!</div>
</div>
<div id="crud-form">
<<<<<<< HEAD
<p>Add a New Destination:</p>
<input type="text" id="newDestInputField" placeholder="destination"></input>
<div id='crud-results'>
</div>
<select id="crud-category-selector">
</select>
=======
<h4 class="header">Add a New Destination:</h4>
<form id='newDestForm'>
<select id="crud-category-selector">
</select>
<input type="text" id="newDestInputField" placeholder="destination"></input>
<div id='crud-results'>
</div>
</form>
>>>>>>> 9c85b4bd0729d4dce8a991eb9c7e12492cc13425
</div>
<h3 class="header">Spots</h3>
<div id="form-field">
<button class="user-inputs" type="button" id="my-location-button" name="button"><img src="./assets/imgs/locationicon.png"></button>
<input class="user-inputs" type="text" id="primary-input" placeholder="Enter new location">
<div id="origin-points-icons">
</div>
<!-- <div id="destination-points-icons">
Are we using this div?
</div> -->
<!-- For category buttons -->
<div id="category">
</div>
</div>
<div id="mapid">
</div>
</body>
</html>