-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
527 lines (518 loc) · 22.1 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
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
<html>
<head>
<title>Kingdom Come Deliverance Map - Interactive map for Kingdom Come Deliverance</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="description" content="Interactive Map for Kingdom Come Deliverance">
<meta name="keywords" content="Interactive Map for Kingdom Come Deliverance">
<meta name="author" content="Roger Nobrega">
<link type="text/css" rel="stylesheet" href="css/leaflet.css" />
<link type="text/css" rel="stylesheet" href="css/leaflet-sidebar.css" />
<link type="text/css" rel="stylesheet" href="css/Leaflet.Coordinates-0.1.3.css" />
<link type="text/css" rel="stylesheet" href="css/style.css" />
<!--<link rel="shortcut icon" href="assets/img/favicon.ico" type="image/x-icon" />-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-114930551-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-114930551-1');
</script>
</head>
<body>
<div id="sidebar" class="sidebar collapsed">
<!-- Nav tabs -->
<div class="sidebar-tabs">
<ul role="tablist">
<li><a href="#home" role="tab"><i class="home"></i></a></li>
<li><a href="#share" role="tab"><i class="share"></i></a></li>
<li><a href="#about" role="tab"><i class="about"></i></a></li>
<!--<li class="disabled"><a href="#settings" role="tab"><i class="settings"></i></a></li>-->
<li><a href="#backup" role="tab"><i class="inventory"></i></a></li>
</ul>
<ul role="tablist"></ul>
</div>
<!-- Tab panes -->
<div class="sidebar-content">
<!-- Tab home -->
<div class="sidebar-pane" id="home">
<span class="sidebar-close">
<i class="left-arrow"></i>
</span>
<div class="logo-container">
<img class="logo-menu" src="https://kingdomcomemap.github.io/assets/images/kcdmap.svg" alt="Kingdom Come Deliverance Interactive Map" />
<p class="version">v. 1.3.1</p>
</div>
<div class="content">
<ul class="user-list">
<li>
<i class="player"></i>
<input type="checkbox" id="usermarkers" class="cc" checked />
<label for="usermarkers" class="cl" data-i18n="Mymarkers">My Markers</label>
</li>
</ul>
<ul class="allmarkers-list">
<li>
<i class="allmarkers"></i>
<input type="checkbox" id="allmarkers" class="cc" />
<label for="allmarkers" class="cl" data-i18n="Allmarkers">All markers</label>
</li>
</ul>
<ul class="markers-list">
<li>
<i class="cities"></i>
<input type="checkbox" id="textmarkers" class="cc" />
<label for="textmarkers" class="cl" data-i18n="citiesNames">Cities Names</label>
</li>
<li>
<i class="fast_travel"></i>
<input type="checkbox" id="fast_travel" class="cc" />
<label for="fast_travel" class="cl" data-i18n="fast_travel">Fast Travel</label>
</li>
<li>
<i class="accident"></i>
<input type="checkbox" id="accident" class="cc" />
<label for="accident" class="cl" data-i18n="accident">Accident</label>
</li>
<li>
<i class="alchemy_bench"></i>
<input type="checkbox" id="alchemy_bench" class="cc" />
<label for="alchemy_bench" class="cl" data-i18n="alchemy_bench">Alchemy Bench</label>
</li>
<li>
<i class="apothecary"></i>
<input type="checkbox" id="apothecary" class="cc" />
<label for="apothecary" class="cl" data-i18n="apothecary">Apothecary</label>
</li>
<li>
<i class="archery_range"></i>
<input type="checkbox" id="archery_range" class="cc" />
<label for="archery_range" class="cl" data-i18n="archery_range">Archery Range</label>
</li>
<li>
<i class="armourer"></i>
<input type="checkbox" id="armourer" class="cc" />
<label for="armourer" class="cl" data-i18n="armourer">Armourer</label>
</li>
<li>
<i class="bandit_camp"></i>
<input type="checkbox" id="bandit_camp" class="cc" />
<label for="bandit_camp" class="cl" data-i18n="bandit_camp">Bandit Camp</label>
</li>
<li>
<i class="baker"></i>
<input type="checkbox" id="baker" class="cc" />
<label for="baker" class="cl" data-i18n="baker">Baker</label>
</li>
<li>
<i class="baths"></i>
<input type="checkbox" id="baths" class="cc" />
<label for="baths" class="cl" data-i18n="baths">Baths</label>
</li>
<li>
<i class="beehive"></i>
<input type="checkbox" id="beehive" class="cc" />
<label for="beehive" class="cl" data-i18n="beehive">Beehive</label>
</li>
<li>
<i class="blacksmith"></i>
<input type="checkbox" id="blacksmith" class="cc" />
<label for="blacksmith" class="cl" data-i18n="blacksmith">Blacksmith</label>
</li>
<li>
<i class="boar_hunting_spot"></i>
<input type="checkbox" id="boar_hunting_spot" class="cc" />
<label for="boar_hunting_spot" class="cl" data-i18n="boar_hunting_spot">Boar Hunting Spot</label>
</li>
<li>
<i class="butcher"></i>
<input type="checkbox" id="butcher" class="cc" />
<label for="butcher" class="cl" data-i18n="butcher">Butcher</label>
</li>
<li>
<i class="camp"></i>
<input type="checkbox" id="camp" class="cc" />
<label for="camp" class="cl" data-i18n="camp">Camp</label>
</li>
<li>
<i class="cave"></i>
<input type="checkbox" id="cave" class="cc" />
<label for="cave" class="cl" data-i18n="cave">Cave</label>
</li>
<li>
<i class="cobbler"></i>
<input type="checkbox" id="cobbler" class="cc" />
<label for="cobbler" class="cl" data-i18n="cobbler">Cobbler</label>
</li>
<li>
<i class="combat_arena"></i>
<input type="checkbox" id="combat_arena" class="cc" />
<label for="combat_arena" class="cl" data-i18n="combat_arena Arena">Combat Arena</label>
</li>
<li>
<i class="conciliation_cross"></i>
<input type="checkbox" id="conciliation_cross" class="cc" />
<label for="conciliation_cross" class="cl" data-i18n="conciliation_cross">Conciliation Cross</label>
</li>
<li>
<i class="deer_hunting_spot"></i>
<input type="checkbox" id="deer_hunting_spot" class="cc" />
<label for="deer_hunting_spot" class="cl" data-i18n="deer_hunting_spot">Deer Hunting Spot</label>
</li>
<li>
<i class="fishing_spot"></i>
<input type="checkbox" id="fishing_spot" class="cc" />
<label for="fishing_spot" class="cl" data-i18n="fishing_spot">Fishing Spot</label>
</li>
<li>
<i class="fish_trap"></i>
<input type="checkbox" id="fish_trap" class="cc" />
<label for="fish_trap" class="cl" data-i18n="fish_trap">Fish Trap</label>
</li>
<li>
<i class="grave"></i>
<input type="checkbox" id="grave" class="cc" />
<label for="grave" class="cl" data-i18n="grave">Grave</label>
</li>
<li>
<i class="grindstone"></i>
<input type="checkbox" id="grindstone" class="cc" />
<label for="grindstone" class="cl" data-i18n="grindstone">Grindstone</label>
</li>
<li>
<i class="vegetable_shop"></i>
<input type="checkbox" id="vegetable_shop" class="cc" />
<label for="vegetable_shop" class="cl" data-i18n="vegetable_shop">Grocer</label>
</li>
<li>
<i class="herbalist"></i>
<input type="checkbox" id="herbalist" class="cc" />
<label for="herbalist" class="cl" data-i18n="herbalist">Herbalist</label>
</li>
<li>
<i class="horse_trader"></i>
<input type="checkbox" id="horse_trader" class="cc" />
<label for="horse_trader" class="cl" data-i18n="horse_trader">Horse Trader</label>
</li>
<li>
<i class="huntsman"></i>
<input type="checkbox" id="huntsman" class="cc" />
<label for="huntsman" class="cl" data-i18n="huntsman">Huntsman</label>
</li>
<li>
<i class="interesting_site"></i>
<input type="checkbox" id="interesting_site" class="cc" />
<label for="interesting_site" class="cl" data-i18n="interesting_site">Interesting Site</label>
</li>
<li>
<i class="lodgings"></i>
<input type="checkbox" id="lodgings" class="cc" />
<label for="lodgings" class="cl" data-i18n="lodgings">Lodgings</label>
</li>
<li>
<i class="miller"></i>
<input type="checkbox" id="miller" class="cc" />
<label for="miller" class="cl" data-i18n="miller">Miller</label>
</li>
<li>
<i class="mine"></i>
<input type="checkbox" id="mine" class="cc" />
<label for="mine" class="cl" data-i18n="mine">Mine</label>
</li>
<li>
<i class="nest"></i>
<input type="checkbox" id="nest" class="cc" />
<label for="nest" class="cl" data-i18n="nest">Nest</label>
</li>
<li>
<i class="scribe"></i>
<input type="checkbox" id="scribe" class="cc" />
<label for="scribe" class="cl" data-i18n="scribe">Scribe</label>
</li>
<li>
<i class="shrine"></i>
<input type="checkbox" id="shrine" class="cc" />
<label for="shrine" class="cl" data-i18n="shrine">Shrine</label>
</li>
<li>
<i class="tailor"></i>
<input type="checkbox" id="tailor" class="cc" />
<label for="tailor" class="cl" data-i18n="tailor">Tailor</label>
</li>
<li>
<i class="tanner"></i>
<input type="checkbox" id="tanner" class="cc" />
<label for="tanner" class="cl" data-i18n="tanner">Tanner</label>
</li>
<li>
<i class="tavern"></i>
<input type="checkbox" id="tavern" class="cc" />
<label for="tavern" class="cl" data-i18n="tavern">Tavern</label>
</li>
<li>
<i class="trader"></i>
<input type="checkbox" id="trader" class="cc" />
<label for="trader" class="cl" data-i18n="trader">Trader</label>
</li>
<li>
<i class="treasure_chest"></i>
<input type="checkbox" id="treasure_chest" class="cc" />
<label for="treasure_chest" class="cl" data-i18n="treasure_chest">Treasure Chest</label>
</li>
<li>
<i class="treasure_map"></i>
<input type="checkbox" id="treasure_map" class="cc" />
<label for="treasure_map" class="cl" data-i18n="treasure_map">Treasure Map</label>
</li>
<li>
<i class="weaponsmith"></i>
<input type="checkbox" id="weaponsmith" class="cc" />
<label for="weaponsmith" class="cl" data-i18n="weaponsmith">Weaponsmith</label>
</li>
<li>
<i class="woodland_garden"></i>
<input type="checkbox" id="woodland_garden" class="cc" />
<label for="woodland_garden" class="cl" data-i18n="woodland_garden">Woodland Garden</label>
</li>
<li>
<i class="your_bed"></i>
<input type="checkbox" id="bed" class="cc" />
<label for="bed" class="cl" data-i18n="bed">Your Bed</label>
</li>
</ul>
</div>
</div>
<!-- Tab share -->
<div class="sidebar-pane" id="share">
<span class="sidebar-close"><i class="left-arrow"></i></span>
<p class="list-title" data-i18n="send_markers">Send Markers</p>
<div class="content">
<p class="text">
You can submit your markers in our discord server. We will update markers daily to make this map the most complete possible. Also new features are on the way!
</p>
<a href="https://discord.gg/7rvUxAC">
<img class="discord-img" src="https://kingdomcomemap.github.io/assets/images/discord-dark.svg" alt="Discord" />
</a>
<p class="text">
Or you can submit them in our Reddit thread:
</p>
<a href="https://www.reddit.com/r/kingdomcome/comments/81aaov/interactive_map_live/">
<img class="discord-img" src="https://kingdomcomemap.github.io/assets/images/reddit.svg" alt="Reddit Kingdom Come Map" />
</a>
</div>
</div>
<!-- Tab backup -->
<div class="sidebar-pane" id="backup">
<span class="sidebar-close"><i class="left-arrow"></i></span>
<p class="list-title" data-i18n="ImportExportmarkers">Import/Export markers</p>
<div class="content mtop15px">
<a class="btn backupls" href="#">
<i class="export"></i>
<span class="btn-text">Export markers</span>
</a>
<a class="btn restorels" href="#">
<i class="import"></i>
<span class="btn-text">Import markers</span>
</a>
<div class="dialog">
<a class="btn clearls" href="#">
<i class="erase"></i>
<span class="btn-text">Clear markers</span>
</a>
<div class="prompt hide">
<p class="text">This will delete all markers from the map, are you sure?</p>
<button class="clearyes" data-i18n="yes">Yes</button>
<button class="clearno" data-i18n="no">No</button>
</div>
</div>
</div>
</div>
<!-- Tab about -->
<div class="sidebar-pane" id="about">
<span class="sidebar-close"><i class="left-arrow"></i></span>
<h3 class="list-title" data-i18n="info">Info</h3>
<div class="content update">
<h3>Update 1.3.1</h3>
<span class="updateday">15/03/2018</span>
<ul class="update-list">
<li class="text">
Added shareable markers.
</li>
<li class="text">
All map markers have a link now which will direct to them if visited.
</li>
<li class="text">
Now you can share the markers you add, just add a marker on the map and copy the marker link.
</li>
<li class="text">
Markers shared with you can be added to your markers. Just click edit and save.
</li>
</ul>
<h3>Update 1.3</h3>
<span class="updateday">11/03/2018</span>
<ul class="update-list">
<li class="text">
Changed the map resolution to 8192px.
</li>
<li class="text">
Map coordinates now match ingame coordinates.
</li>
<li class="text">
If you had markers on the map with the previous coordinates system, they will be automatically converted to the new one.
</li>
<li class="text">
New option to export/import and clear the markers you added. (Fourth tab in the left menu).
</li>
<li class="text">
Markers content will be updated with more details!
</li>
</ul>
<h3>Update 1.2</h3>
<span class="updateday">04/03/2018</span>
<ul class="update-list">
<li class="text">
All markers extracted from the game.
</li>
<li class="text">
You can add a name and a description to your markers, as well choose the marker icon.
</li>
<li class="text">
You will notice coordinates inside the popup of the markers, these coordinates are the ingame coordinates.
</li>
<li class="text">
If you have more information about a specific marker, use that coordinates to help me locate the marker.
</li>
<li class="text">
Some Woodland gardens have information of what herbs you can find there.
</li>
<li class="text">
More to come!
</li>
</ul>
<h3>Initial release 1.0</h3>
<span class="updateday">01/03/2018</span>
<ul class="update-list">
<li class="text">
In this version of the map you can place markers around the map and it will save it in the local storage in your browser, even if you close it will remain there. Only if you clear your browser cache that the markers will be lost!
</li>
<li class="text">
You can add a name and a description to your markers, as well choose the marker icon.
</li>
<li class="text">
The map will be updated daily with new markers, and features.
</li>
</ul>
<div class="legalinfo">
<p class="text creator">
Kingdom Come Deliverance Map
</p>
<p class="text creator">
Created by RogerHN.
</p>
<p class="text">
Big thanks to Talys and POiZiE for the help with the markers.
</p>
<p class="text">
Also big thanks to Webdestroya from <a class="link" href="https://www.pubgmap.io" target="_blank">pubgmap.io</a> for helping me fix the markers code.
</p>
<p class="text">
The <a class="link" href="https://www.kingdomcomerpg.com" target="_blank">Kingdom Come: Deliverance</a> logo, icons and the map are copyright and property of <a class="link" href="https://warhorsestudios.cz/" target="_blank">Warhorse Studios</a>.
</p>
</div>
</div>
</div>
<!-- Tab settings -->
<div class="sidebar-pane" id="settings">
<span class="sidebar-close"><i class="left-arrow"></i></span>
<p class="list-title" data-i18n="languagechange">Change Language</p>
<div class="langswitch">
<a class="lang" data-lang="en">
<i class="en"></i>
<span class="lang-text" data-i18n="English">English</span>
<span class="checkmark"></span>
</a>
<a class="lang" data-lang="es">
<i class="es"></i>
<span class="lang-text" data-i18n="Spanish">Spanish</span>
<span class="checkmark"></span>
</a>
<a class="lang" data-lang="br">
<i class="br"></i>
<span class="lang-text" data-i18n="PortugueseBrazilian">Portuguese Brazilian</span>
<span class="checkmark"></span>
</a>
<a class="lang disabled" data-lang="fr">
<i class="fr"></i>
<span class="lang-text" data-i18n="French">French</span>
<span class="checkmark"></span>
</a>
<a class="lang disabled" data-lang="it">
<i class="it"></i>
<span class="lang-text" data-i18n="Italian">Italian</span>
<span class="checkmark"></span>
</a>
<a class="lang disabled" data-lang="de">
<i class="de"></i>
<span class="lang-text" data-i18n="German">German</span>
<span class="checkmark"></span>
</a>
<a class="lang" data-lang="ru">
<i class="ru"></i>
<span class="lang-text" data-i18n="Russian">Russian</span>
<span class="checkmark"></span>
</a>
<a class="lang disabled" data-lang="pl">
<i class="pl"></i>
<span class="lang-text" data-i18n="Polish">Polish</span>
<span class="checkmark"></span>
</a>
<a class="lang disabled" data-lang="nl">
<i class="nl"></i>
<span class="lang-text" data-i18n="Dutch">Dutch</span>
<span class="checkmark"></span>
</a>
<a class="lang disabled" data-lang="cn">
<i class="cn"></i>
<span class="lang-text" data-i18n="Chinese">Chinese</span>
<span class="checkmark"></span>
</a>
<a class="lang disabled" data-lang="ko">
<i class="ko"></i>
<span class="lang-text" data-i18n="Korean">Korean</span>
<span class="checkmark"></span>
</a>
<a class="lang disabled" data-lang="ja">
<i class="ja"></i>
<span class="lang-text" data-i18n="Japanese">Japanese</span>
<span class="checkmark"></span>
</a>
</div>
</div>
</div>
</div>
<div id="map" class="sidebar-map"></div>
<!-- jQuery -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<!-- Leaflet -->
<script src="js/leaflet.js"></script>
<script src="js/libs/smoothwheelzoom.js"></script>
<script src="js/libs/tilelayer.canvas.js"></script>
<!-- Leaflet Coordinates -->
<script src="js/Leaflet.Coordinates-0.1.3.min.js" charset="utf-8"></script>
<!-- Leaflet Hash -->
<script src="js/leaflet-hash.min.js" charset="utf-8"></script>
<!-- Fullscren Control -->
<script src="js/FullScreen.js" charset="utf-8"></script>
<!-- Sidebar v2 -->
<script src="js/leaflet-sidebar.js" type="text/javascript"></script>
<!-- i18next -->
<script src="js/i18next-1.6.3.js"></script>
<!-- JS -->
<script src="js/markers.js" type="text/javascript"></script>
<script src="js/usr_markers.js" type="text/javascript"></script>
<script src="js/lang.js"></script>
<!-- js -->
<script src="js/functions.js" type="text/javascript"></script>
</body>
</html>