-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
316 lines (309 loc) · 9.57 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<!-- Leaflet Local [dev-fix: replace with npm] -->
<script src="./libraries/leaflet/leaflet.js"></script>
<link rel="stylesheet" href="./libraries/leaflet/leaflet.css" />
<!-- Tailwind CDN [dev-fix: replace with npm] -->
<link
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
rel="stylesheet"
/>
<!-- <link
href="https://unpkg.com/tailwindcss@latest/dist/tailwind.min.css"
rel="stylesheet"
/> -->
<!-- customisations -->
<script type="module" src="./modules/utils.js"></script>
<script type="module" src="./modules/leaflet.js"></script>
<script type="module" src="./modules/main.js"></script>
<link rel="stylesheet" href="./style.css" />
<title>On The Spot | Skate Map</title>
</head>
<body class="bg-gray-800 text-pink-600 font-mono w-full grid grid-cols-1 place-items-center">
<main class="max-w-screen-xl w-11/12 my-8">
<h1
class="
font-extrabold
md:font-thin
lg:font-normal
text-xl
md:text-4xl
xl:text-5xl
block
uppercase
tracking-wide
mb-5
"
>
on the spot | skate map
</h1>
<div class="grid grid-cols-1 md:grid-cols-2 gap-x-5 gap-y-5">
<div>
<h3 class="tracking-wide mb-2">1. find your spot and click</h3>
<div class="h-80 md:h-full" id="mapid"></div>
</div>
<div>
<!-- TAILWIND CSS FORM -->
<h3 class="block tracking-wide mb-2">2. add some details</h3>
<form
id="spot-form"
action="https://formspree.io/f/xdoyvdyy"
method="POST"
>
<div class="grid grid-cols-1 md:grid-cols-2 gap-x-2 gap-y-2 md:gap-y-5">
<div>
<label
class="
block
uppercase
tracking-wide
text-gray-300 text-xs
font-bold
mb-2
"
for="name"
>
name
</label>
<input
required
name="name"
id="name"
autocomplete="name"
class="
appearance-none
block
sm:w-min
w-full
bg-gray-900
text-gray-300
border border-pink-600
hover:border-pink-500
rounded
py-3
px-4
leading-tight
focus:outline-none
focus:placeholder-gray-300
"
type="text"
placeholder="spot name"
/>
<!-- <p class="text-pink-600 text-xs italic">
Please fill out this field.
</p> -->
</div>
<div>
<label
class="
block
uppercase
tracking-wide
text-gray-300 text-xs
font-bold
mb-2
"
for="city"
>
city
</label>
<input
name="city"
id="city"
autocomplete="city"
class="
appearance-none
block
w-full
sm:w-min
bg-gray-900
text-gray-300
border border-blue-700
hover:border-blue-600
rounded
py-3
px-4
leading-tight
focus:outline-none
focus:placeholder-gray-300
"
type="text"
placeholder="spot city"
/>
</div>
<div>
<label
class="
block
uppercase
tracking-wide
text-gray-300 text-xs
font-bold
mb-2
"
for="name"
>
latitude
</label>
<input
required
name="latitude"
id="latitude"
autocomplete="latitude"
class="
appearance-none
block
w-full
sm:w-min
bg-gray-900
text-gray-300
border border-pink-600
hover:border-pink-500
rounded
py-3
px-4
leading-tight
focus:outline-none
focus:placeholder-gray-300
"
min="-90" max="90"
type="number"
step="any"
placeholder="latitude"
/>
<!-- <p class="text-pink-600 text-xs italic">
Please fill out this field.
</p> -->
</div>
<div>
<label
class="
block
uppercase
tracking-wide
text-gray-300 text-xs
font-bold
mb-2
"
for="longitude"
>
longitude
</label>
<input
required
name="longitude"
id="longitude"
autocomplete="longitude"
class="
appearance-none
block
w-full
sm:w-min
border border-pink-600
hover:border-pink-500
rounded
py-3
px-4
leading-tight
bg-gray-900
text-gray-300
focus:outline-none
focus:placeholder-gray-300
"
type="number"
step="any"
min="-180" max="180"
placeholder="longitude"
/>
</div>
<div>
<label
class="
block
uppercase
tracking-wide
text-gray-300 text-xs
font-bold
mb-2
"
>picture</label
>
<label
class="
appearance-none
w-full
sm:w-min
block
border border-blue-700
rounded
py-3
px-4
leading-tight
hover:bg-blue-700 hover:text-white
ease-linear
transition-all
duration-150
cursor-pointer
bg-gray-900
text-gray-300
text-center
"
for="picture"
>spot picture
<input
type="file"
class="hidden"
id="picture"
placeholder="spot picture"
type="file"
accept="image/png, image/jpeg"
autocomplete="picture"
/>
</label>
</div>
<div class="img-preview-toggle justify-self-center">
<img class="img-preview" src="" alt="spot picture preview" />
</div>
<div>
<h3 class="block tracking-wide mb-2">3. add spot</h3>
<button
id="submit"
class="
appearance-none
block
w-full
sm:w-min
bg-gray-900
text-gray-300
border border-pink-600
hover:border-pink-500
rounded
py-3
px-4
leading-tight
hover:bg-pink-600
hover:text-white
focus:outline-none focus:placeholder-gray-300
ease-linear
transition-all
duration-150
"
type="submit"
value="add"
>
add spot
</button>
</div>
</div>
<!-- hidden img data must be placed within form -->
<textarea id="hidden-base64" name="base64"></textarea>
</form>
</div>
</div>
</body>
</html>