FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
RocketMap/templates/map.html at develop · RocketMap/RocketMap · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
RocketMap
/
RocketMap
Public
Notifications
You must be signed in to change notification settings
Fork
1.4k
Star
2.8k
Code
Issues
34
Pull requests
31
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
RocketMap
/
templates
/
map.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
531 lines (526 loc) · 26.6 KB
Breadcrumbs
RocketMap
/
templates
/
map.html
Copy path
File metadata and controls
531 lines (526 loc) · 26.6 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
<!DOCTYPE html
>
<
html
lang
="
{{lang}}
"
>
<
head
>
<
meta
charset
="
utf-8
"
>
<
title
>
RocketMap
</
title
>
<
meta
name
="
viewport
"
content
="
width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui
"
>
<
meta
name
="
apple-mobile-web-app-capable
"
content
="
yes
"
>
<
meta
name
="
apple-mobile-web-app-status-bar-style
"
content
="
black
"
>
<
meta
name
="
apple-mobile-web-app-title
"
content
="
PokeMap
"
>
<
meta
name
="
mobile-web-app-capable
"
content
="
yes
"
>
<
meta
name
="
theme-color
"
content
="
#3b3b3b
"
>
<!-- Fav- & Apple-Touch-Icons -->
<!-- Favicon -->
<
link
rel
="
shortcut icon
"
href
="
{{ url_for('static', filename='images/appicons/favicon.ico').lstrip('/') }}
"
type
="
image/x-icon
"
>
<!-- non-retina iPhone pre iOS 7 -->
<
link
rel
="
apple-touch-icon
"
href
="
{{ url_for('static', filename='images/appicons/114x114.png').lstrip('/') }}
"
sizes
="
57x57
"
>
<!-- non-retina iPad pre iOS 7 -->
<
link
rel
="
apple-touch-icon
"
href
="
{{ url_for('static', filename='images/appicons/144x144.png').lstrip('/') }}
"
sizes
="
72x72
"
>
<!-- non-retina iPad iOS 7 -->
<
link
rel
="
apple-touch-icon
"
href
="
{{ url_for('static', filename='images/appicons/152x152.png').lstrip('/') }}
"
sizes
="
76x76
"
>
<!-- retina iPhone pre iOS 7 -->
<
link
rel
="
apple-touch-icon
"
href
="
{{ url_for('static', filename='images/appicons/114x114.png').lstrip('/') }}
"
sizes
="
114x114
"
>
<!-- retina iPhone iOS 7 -->
<
link
rel
="
apple-touch-icon
"
href
="
{{ url_for('static', filename='images/appicons/120x120.png').lstrip('/') }}
"
sizes
="
120x120
"
>
<!-- retina iPad pre iOS 7 -->
<
link
rel
="
apple-touch-icon
"
href
="
{{ url_for('static', filename='images/appicons/144x144.png').lstrip('/') }}
"
sizes
="
144x144
"
>
<!-- retina iPad iOS 7 -->
<
link
rel
="
apple-touch-icon
"
href
="
{{ url_for('static', filename='images/appicons/152x152.png').lstrip('/') }}
"
sizes
="
152x152
"
>
<!-- retina iPhone 6 iOS 7 -->
<
link
rel
="
apple-touch-icon
"
href
="
{{ url_for('static', filename='images/appicons/180x180.png').lstrip('/') }}
"
sizes
="
180x180
"
>
<
link
rel
="
stylesheet
"
href
="
{{ url_for('static', filename='dist/css/app.min.css').lstrip('/') }}
"
>
<!-- CDN -->
<
link
rel
="
stylesheet
"
href
="
https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.0/jquery-ui.min.css
"
>
<
link
rel
="
stylesheet
"
href
="
https://cdn.datatables.net/1.10.12/css/jquery.dataTables.css
"
>
<
link
rel
="
stylesheet
"
href
="
https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css
"
>
<
link
rel
="
stylesheet
"
href
="
https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css
"
>
<!-- Custom CSS code-->
{% if show.custom_css %}
<
link
rel
="
stylesheet
"
type
="
text/css
"
href
="
static/css/custom.css
"
>
{% endif %}
</
head
>
<
body
id
="
top
"
class
="
mapPage
"
>
<
div
class
="
wrapper
"
>
<!-- Header -->
<
header
id
="
header
"
>
<
a
href
="
#nav
"
>
<
span
class
="
label
"
>
Options
</
span
>
</
a
>
<
h1
>
<
a
href
="
./
"
>
RocketMap
<
img
class
='
rocket icon
'
src
='
static/images/rocket.png
'
>
</
a
>
</
h1
>
<
a
href
="
#stats
"
id
="
statsToggle
"
class
="
statsNav
"
style
="
float: right;
"
>
<
span
class
="
label
"
>
Stats
</
span
>
</
a
>
<
a
href
="
status
"
target
="
_blank
"
style
="
float: right;
"
>
<
span
class
="
label
"
>
Status
</
span
>
</
a
>
</
header
>
<!-- NAV -->
<
nav
id
="
nav
"
>
<
div
id
="
nav-accordion
"
>
<
h3
>
<
i
class
="
fa fa-map-marker fa-fw
"
>
</
i
>
Marker Settings
</
h3
>
<
div
>
{% if show.pokemons %}
<
div
class
="
form-control switch-container
"
>
<
h3
>
Pokémon
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
pokemon-switch
"
type
="
checkbox
"
name
="
pokemon-switch
"
class
="
onoffswitch-checkbox
"
checked
>
<
label
class
="
onoffswitch-label
"
for
="
pokemon-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
{% endif %}
{% if show.raids %}
<
div
class
="
form-control switch-container
"
>
<
h3
>
Raids
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
raids-switch
"
type
="
checkbox
"
name
="
raids-switch
"
class
="
onoffswitch-checkbox
"
checked
>
<
label
class
="
onoffswitch-label
"
for
="
raids-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
<
div
id
="
raids-filter-wrapper
"
style
="
display:none
"
>
<
div
class
="
form-control switch-container
"
id
="
raid-active-gym-wrapper
"
>
<
h3
>
Show Active Raids only
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
raid-active-gym-switch
"
type
="
checkbox
"
name
="
raid-active-gym-switch
"
class
="
onoffswitch-checkbox
"
checked
>
<
label
class
="
onoffswitch-label
"
for
="
raid-active-gym-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
<
div
class
="
form-control switch-container
"
id
="
park-active-gym-wrapper
"
>
<
h3
>
Show Park Raids only
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
raid-park-gym-switch
"
type
="
checkbox
"
name
="
raid-park-gym-switch
"
class
="
onoffswitch-checkbox
"
checked
>
<
label
class
="
onoffswitch-label
"
for
="
raid-park-gym-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
<
div
class
="
form-control switch-container
"
id
="
min-raid-level-only-wrapper
"
>
<
h3
>
Minimum Raid Level
</
h3
>
<
select
name
="
raid-min-level-only-switch
"
id
="
raid-min-level-only-switch
"
>
<
option
value
="
1
"
>
Level 1
</
option
>
<
option
value
="
2
"
>
Level 2
</
option
>
<
option
value
="
3
"
>
Level 3
</
option
>
<
option
value
="
4
"
>
Level 4
</
option
>
<
option
value
="
5
"
>
Level 5
</
option
>
</
select
>
</
div
>
<
div
class
="
form-control switch-container
"
id
="
max-raid-level-only-wrapper
"
>
<
h3
>
Maximum Raid Level
</
h3
>
<
select
name
="
raid-max-level-only-switch
"
id
="
raid-max-level-only-switch
"
>
<
option
value
="
1
"
>
Level 1
</
option
>
<
option
value
="
2
"
>
Level 2
</
option
>
<
option
value
="
3
"
>
Level 3
</
option
>
<
option
value
="
4
"
>
Level 4
</
option
>
<
option
value
="
5
"
>
Level 5
</
option
>
</
select
>
</
div
>
</
div
>
{% endif %}
{% if show.gyms %}
<
div
class
="
form-control switch-container
"
>
<
h3
>
Gyms
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
gyms-switch
"
type
="
checkbox
"
name
="
gyms-switch
"
class
="
onoffswitch-checkbox
"
checked
>
<
label
class
="
onoffswitch-label
"
for
="
gyms-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
{% if show.gym_info %}
<
div
class
="
form-control switch-container
"
id
="
gym-sidebar-wrapper
"
style
="
display:none
"
>
<
h3
>
Use Gym Sidebar
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
gym-sidebar-switch
"
type
="
checkbox
"
name
="
gym-sidebar-switch
"
class
="
onoffswitch-checkbox
"
checked
>
<
label
class
="
onoffswitch-label
"
for
="
gym-sidebar-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
{% endif %}
<
div
id
="
gyms-filter-wrapper
"
style
="
display:none
"
>
<
div
class
="
form-control switch-container
"
id
="
team-gyms-only-wrapper
"
>
<
h3
>
Team
</
h3
>
<
select
name
="
team-gyms-filter-switch
"
id
="
team-gyms-only-switch
"
>
<
option
value
="
0
"
>
All
</
option
>
<
option
value
="
1
"
>
Mystic
</
option
>
<
option
value
="
2
"
>
Valor
</
option
>
<
option
value
="
3
"
>
Instinct
</
option
>
</
select
>
</
div
>
<
div
class
="
form-control switch-container
"
id
="
open-gyms-only-wrapper
"
>
<
h3
>
Open Spot
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
open-gyms-only-switch
"
type
="
checkbox
"
name
="
open-gyms-only-switch
"
class
="
onoffswitch-checkbox
"
checked
>
<
label
class
="
onoffswitch-label
"
for
="
open-gyms-only-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
<
div
class
="
form-control switch-container
"
id
="
park-gyms-only-wrapper
"
>
<
h3
>
Park Gyms Only
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
park-gyms-only-switch
"
type
="
checkbox
"
name
="
park-gyms-only-switch
"
class
="
onoffswitch-checkbox
"
checked
>
<
label
class
="
onoffswitch-label
"
for
="
park-gyms-only-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
<
div
class
="
form-control switch-container
"
id
="
min-level-gyms-filter-wrapper
"
>
<
h3
>
Minimum Level
</
h3
>
<
select
name
="
min-level-gyms-filter-switch
"
id
="
min-level-gyms-filter-switch
"
>
<
option
value
="
0
"
>
0
</
option
>
<
option
value
="
1
"
>
1
</
option
>
<
option
value
="
2
"
>
2
</
option
>
<
option
value
="
3
"
>
3
</
option
>
<
option
value
="
4
"
>
4
</
option
>
<
option
value
="
5
"
>
5
</
option
>
<
option
value
="
6
"
>
6
</
option
>
</
select
>
</
div
>
<
div
class
="
form-control switch-container
"
id
="
max-level-gyms-filter-wrapper
"
>
<
h3
>
Maximum Level
</
h3
>
<
select
name
="
max-level-gyms-filter-switch
"
id
="
max-level-gyms-filter-switch
"
>
<
option
value
="
0
"
>
0
</
option
>
<
option
value
="
1
"
>
1
</
option
>
<
option
value
="
2
"
>
2
</
option
>
<
option
value
="
3
"
>
3
</
option
>
<
option
value
="
4
"
>
4
</
option
>
<
option
value
="
5
"
>
5
</
option
>
<
option
value
="
6
"
>
6
</
option
>
</
select
>
</
div
>
<
div
class
="
form-control switch-container
"
id
="
last-update-gyms-wrapper
"
>
<
h3
>
Last Scan
</
h3
>
<
select
name
="
last-update-gyms-switch
"
id
="
last-update-gyms-switch
"
>
<
option
value
="
0
"
>
All
</
option
>
<
option
value
="
1
"
>
Last Hour
</
option
>
<
option
value
="
6
"
>
Last 6 Hours
</
option
>
<
option
value
="
12
"
>
Last 12 Hours
</
option
>
<
option
value
="
24
"
>
Last 24 Hours
</
option
>
<
option
value
="
168
"
>
Last Week
</
option
>
</
select
>
</
div
>
</
div
>
{% endif %}
{% if show.pokestops %}
<
div
class
="
form-control switch-container
"
>
<
h3
>
Pokéstops
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
pokestops-switch
"
type
="
checkbox
"
name
="
pokestops-switch
"
class
="
onoffswitch-checkbox
"
checked
>
<
label
class
="
onoffswitch-label
"
for
="
pokestops-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
<
div
class
="
form-control switch-container
"
id
="
lured-pokestops-only-wrapper
"
style
="
display:none
"
>
<
select
name
="
lured-pokestops-only-switch
"
id
="
lured-pokestops-only-switch
"
>
<
option
value
="
0
"
>
All
</
option
>
<
option
value
="
1
"
>
Only Lured
</
option
>
</
select
>
</
div
>
{% endif %}
<
div
class
="
form-control switch-container
"
>
<
h3
>
Scanned Locations
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
scanned-switch
"
type
="
checkbox
"
name
="
scanned-switch
"
class
="
onoffswitch-checkbox
"
>
<
label
class
="
onoffswitch-label
"
for
="
scanned-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
<
div
class
="
form-control switch-container
"
>
<
h3
>
Spawn Points
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
spawnpoints-switch
"
type
="
checkbox
"
name
="
spawnpoints-switch
"
class
="
onoffswitch-checkbox
"
>
<
label
class
="
onoffswitch-label
"
for
="
spawnpoints-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
<
div
class
="
form-control switch-container
"
>
<
h3
>
Ranges
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
ranges-switch
"
type
="
checkbox
"
name
="
ranges-switch
"
class
="
onoffswitch-checkbox
"
>
<
label
class
="
onoffswitch-label
"
for
="
ranges-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
{% if show.pokemons %}
<
div
class
="
form-control
"
>
<
label
for
="
exclude-pokemon
"
>
<
h3
>
Hide Pokémon
</
h3
>
<
div
style
="
max-height:165px;overflow-y:auto
"
>
<
select
id
="
exclude-pokemon
"
multiple
="
multiple
"
>
</
select
>
</
div
>
</
label
>
</
div
>
<
div
class
="
form-control switch-container
"
id
="
exclude-rarity-wrapper
"
>
<
h3
>
Exclude Rarity
</
h3
>
<
select
name
="
exclude-rarity
"
id
="
exclude-rarity
"
>
<
option
value
="
0
"
>
None
</
option
>
<
option
value
="
1
"
>
Common
</
option
>
<
option
value
="
2
"
>
Uncommon and below
</
option
>
<
option
value
="
3
"
>
Rare and below
</
option
>
<
option
value
="
4
"
>
Very Rare and below
</
option
>
<
option
value
="
5
"
>
Ultra Rare and below
</
option
>
</
select
>
</
div
>
{% if show.encounter %}
<
div
class
="
form-control switch-container
"
>
<
h3
>
Pokémon Stats
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
pokemon-stats-switch
"
type
="
checkbox
"
name
="
pokemon-stats-switch
"
class
="
onoffswitch-checkbox
"
checked
>
<
label
class
="
onoffswitch-label
"
for
="
pokemon-stats-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
{% endif %}
{% endif %}
</
div
>
<
h3
>
<
i
class
="
fa fa-location-arrow fa-fw
"
>
</
i
>
Location & Search Settings
</
h3
>
<
div
>
{% if show.fixed_display %}
<
div
class
="
form-control switch-container
"
>
<
label
for
="
next-location
"
>
<
h3
>
Change search location
</
h3
>
<
input
id
="
next-location
"
type
="
text
"
name
="
next-location
"
placeholder
="
Change search location
"
>
</
label
>
</
div
>
<
div
class
="
form-control switch-container
"
>
<
h3
>
Lock search marker
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
lock-marker-switch
"
type
="
checkbox
"
name
="
lock-marker-switch
"
class
="
onoffswitch-checkbox
"
checked
/>
<
label
class
="
onoffswitch-label
"
for
="
lock-marker-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
<
div
class
="
form-control switch-container
"
>
<
h3
>
Search follows me
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
geoloc-switch
"
type
="
checkbox
"
name
="
geoloc-switch
"
class
="
onoffswitch-checkbox
"
checked
/>
<
label
class
="
onoffswitch-label
"
for
="
geoloc-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
{% endif %}
<
div
class
="
form-control switch-container
"
>
<
h3
>
Start map at my position
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
start-at-user-location-switch
"
type
="
checkbox
"
name
="
start-at-user-location-switch
"
class
="
onoffswitch-checkbox
"
checked
/>
<
label
class
="
onoffswitch-label
"
for
="
start-at-user-location-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
{% if show.search_display %}
<
div
class
="
form-control switch-container
"
>
<
h3
>
Search
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
search-switch
"
type
="
checkbox
"
name
="
search-switch
"
class
="
onoffswitch-checkbox
"
checked
/>
<
label
class
="
onoffswitch-label
"
for
="
search-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
{% endif %}
<
div
class
="
form-control switch-container
"
>
<
h3
>
Follow me
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
follow-my-location-switch
"
type
="
checkbox
"
name
="
follow-my-location-switch
"
class
="
onoffswitch-checkbox
"
checked
/>
<
label
class
="
onoffswitch-label
"
for
="
follow-my-location-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
{% if show.scan_display %}
<
div
class
="
form-control switch-container
"
>
<
h3
>
Scan here button
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
scan-here-switch
"
type
="
checkbox
"
name
="
scan-here-switch
"
class
="
onoffswitch-checkbox
"
checked
/>
<
label
class
="
onoffswitch-label
"
for
="
scan-here-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
{% endif %}
</
div
>
{% if show.pokemons %}
<
h3
>
<
i
class
="
fa fa-bullhorn fa-fw
"
>
</
i
>
Notification Settings
</
h3
>
<
div
>
<
div
class
="
form-control
"
>
<
label
for
="
notify-pokemon
"
>
<
h3
>
Notify of Pokémon
</
h3
>
<
div
style
="
max-height:165px;overflow-y:auto
"
>
<
select
id
="
notify-pokemon
"
multiple
="
multiple
"
>
</
select
>
</
div
>
</
label
>
</
div
>
<
div
class
="
form-control
"
>
<
label
for
="
notify-rarity
"
>
<
h3
>
Notify of Rarity
</
h3
>
<
div
style
="
max-height:165px;overflow-y:auto
"
>
<
select
id
="
notify-rarity
"
multiple
="
multiple
"
>
</
select
>
</
div
>
</
label
>
</
div
>
{% if show.encounter %}
<
div
id
="
notify-perfection-wrapper
"
style
="
display:none
"
>
<
div
class
="
form-control
"
>
<
label
for
="
notify-perfection
"
>
<
h3
>
Notify of Perfection
</
h3
>
<
input
id
="
notify-perfection
"
type
="
text
"
name
="
notify-perfection
"
placeholder
="
Minimum perfection %
"
/>
</
label
>
</
div
>
</
div
>
<
div
class
="
form-control
"
>
<
label
for
="
notify-level
"
>
<
h3
>
Notify of Level
</
h3
>
<
input
id
="
notify-level
"
type
="
text
"
name
="
notify-level
"
placeholder
="
Minimum level
"
/>
</
label
>
</
div
>
{% endif %}
<
div
class
="
form-control switch-container
"
>
<
h3
>
Notify with sound
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
sound-switch
"
type
="
checkbox
"
name
="
sound-switch
"
class
="
onoffswitch-checkbox
"
checked
>
<
label
class
="
onoffswitch-label
"
for
="
sound-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
<
div
class
="
form-control switch-container
"
>
<
h3
>
Use Pokémon cries
</
h3
>
<
div
class
="
onoffswitch
"
>
<
input
id
="
cries-switch
"
type
="
checkbox
"
name
="
cries-switch
"
class
="
onoffswitch-checkbox
"
checked
>
<
label
class
="
onoffswitch-label
"
for
="
cries-switch
"
>
<
span
class
="
switch-label
"
data-on
="
On
"
data-off
="
Off
"
>
</
span
>
<
span
class
="
switch-handle
"
>
</
span
>
</
label
>
</
div
>
</
div
>
</
div
>
{% endif %}
<
h3
>
<
i
class
="
fa fa-map-o fa-fw
"
>
</
i
>
Style Settings
</
h3
>
<
div
>
<
div
class
="
form-control switch-container
"
>
<
h3
>
Map Style
</
h3
>
<
select
id
="
map-style
"
>
</
select
>
</
div
>
<
div
class
="
form-control switch-container
"
>
<
h3
>
Map Service Provider
</
h3
>
<
select
name
="
map-service-provider
"
id
="
map-service-provider
"
>
<
option
value
="
googlemaps
"
>
Google Maps
</
option
>
<
option
value
="
applemaps
"
>
Apple Maps
</
option
>
</
select
>
</
div
>
<
div
class
="
form-control switch-container
"
>
<
h3
>
Icon Size
</
h3
>
<
select
name
="
pokemon-icon-size
"
id
="
pokemon-icon-size
"
>
<
option
value
="
-8
"
>
Small
</
option
>
<
option
value
="
0
"
>
Normal
</
option
>
<
option
value
="
10
"
>
Large
</
option
>
<
option
value
="
20
"
>
X-Large
</
option
>
</
select
>
</
div
>
<
div
class
="
form-control switch-container
"
>
<
h3
>
Search Icon Marker
</
h3
>
<
select
name
="
iconmarker-style
"
id
="
iconmarker-style
"
>
</
select
>
</
div
>
<
div
class
="
form-control switch-container
"
>
<
h3
>
Location Icon Marker
</
h3
>
<
select
name
="
locationmarker-style
"
id
="
locationmarker-style
"
>
</
select
>
</
div
>
</
div
>
</
div
>
<
div
>
<
center
>
<
button
class
="
settings
"
onclick
="
confirm('Are you sure you want to reset settings to default values?') ? (localStorage.clear(), window.location.reload()) : false
"
>
<
i
class
="
fa fa-refresh fa-fw
"
>
</
i
>
Reset Settings
</
button
>
</
center
>
</
div
>
</
nav
>
<
nav
id
="
stats
"
>
<
div
class
="
switch-container
"
>
<
div
class
="
switch-container
"
>
<
div
>
<
center
>
<
a
href
="
stats
"
>
Full Stats
</
a
>
</
center
>
</
div
>
</
div
>
<
div
class
="
switch-container
"
>
<
center
>
<
h1
id
="
stats-ldg-label
"
>
Loading...
</
h1
>
</
center
>
</
div
>
<
div
class
="
stats-label-container
"
>
<
center
>
<
h1
id
="
stats-pkmn-label
"
>
</
h1
>
</
center
>
</
div
>
<
div
id
="
pokemonList
"
style
="
color: black;
"
>
<
table
id
="
pokemonList_table
"
class
="
display
"
cellspacing
="
0
"
width
="
100%
"
>
<
thead
>
<
tr
>
<
th
>
Icon
</
th
>
<
th
>
Name
</
th
>
<
th
>
Count
</
th
>
<
th
>
%
</
th
>
</
tr
>
</
thead
>
<
tbody
>
</
tbody
>
</
table
>
<
div
id
="
pokeStatStatus
"
style
="
color: black;
"
>
</
div
>
</
div
>
<
div
class
="
stats-label-container
"
>
<
center
>
<
h1
id
="
stats-gym-label
"
>
</
h1
>
</
center
>
</
div
>
<
div
id
="
arenaList
"
style
="
color: black;
"
>
</
div
>
<
div
class
="
stats-label-container
"
>
<
center
>
<
h1
id
="
stats-pkstop-label
"
>
</
h1
>
</
center
>
</
div
>
<
div
id
="
pokestopList
"
style
="
color: black;
"
>
</
div
>
</
div
>
</
nav
>
<
nav
id
="
gym-details
"
>
<
center
>
<
h1
>
Loading...
</
h1
>
</
center
>
</
nav
>
<
div
id
="
map
"
>
</
div
>
<
div
class
="
fab
"
id
="
scan-here
"
style
="
display:none
"
>
</
div
>
</
div
>
<!-- Load JS libs before custom scripts. -->
<
script
src
="
https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js
"
>
</
script
>
<
script
src
="
https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js
"
>
</
script
>
<
script
src
="
https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.min.js
"
>
</
script
>
<
script
src
="
https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js
"
>
</
script
>
<
script
src
="
https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment-with-locales.min.js
"
>
</
script
>
<
script
src
="
https://cdnjs.cloudflare.com/ajax/libs/push.js/1.0.4/push.min.js
"
>
</
script
>
<
script
src
="
{{ url_for('static', filename='dist/js/vendor/markerclusterer.min.js').lstrip('/') }}
"
>
</
script
>
<
script
src
="
https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js
"
>
</
script
>
<
script
src
="
https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.js
"
>
</
script
>
<
script
>
var
centerLat
=
{
{
lat
}
}
;
var
centerLng
=
{
{
lng
}
}
;
var
showConfig
=
{
{
show
|
tojson
|
safe
}
}
;
</
script
>
<
script
src
="
{{ url_for('static', filename='dist/js/app.min.js').lstrip('/') }}
"
>
</
script
>
<
script
src
="
{{ url_for('static', filename='dist/js/map.common.min.js').lstrip('/') }}
"
>
</
script
>
<!-- Load custom JS before map.js so it can change Store defaults. -->
{% if show.custom_js %}
<
script
src
="
{{ url_for('static', filename='dist/js/custom.min.js').lstrip('/') }}
"
>
</
script
>
{% endif %}
<
script
src
="
{{ url_for('static', filename='dist/js/map.min.js').lstrip('/') }}
"
>
</
script
>
<
script
src
="
{{ url_for('static', filename='dist/js/stats.min.js').lstrip('/') }}
"
>
</
script
>
<
script
defer
src
="
https://maps.googleapis.com/maps/api/js?key={{ gmaps_key }}&callback=initMap&libraries=places,geometry
"
>
</
script
>
<
script
async
src
='
https://www.google-analytics.com/analytics.js
'
>
</
script
>
</
body
>
</
html
>
Back
|
FazBrowse Home
|
New Git URL