-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (54 loc) · 2.6 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
<!DOCTYPE html>
<html lang="pl">
<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">
<!--linki js i css-->
<link rel="stylesheet" href="strona_glowna.css">
<script src="mapbox.js"></script>
<!--Mapbox API-->
<script src="https://api.mapbox.com/mapbox-gl-js/v1.6.1/mapbox-gl.js"></script>
<link href="https://api.mapbox.com/mapbox-gl-js/v1.6.1/mapbox-gl.css" rel="stylesheet" />
<!--Mapbox geocoder-->
<script src='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v4.4.2/mapbox-gl-geocoder.min.js'></script>
<link rel='stylesheet' href='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v4.4.2/mapbox-gl-geocoder.css' type='text/css' />
<!--Mapbox drawing API-->
<script src='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-draw/v1.0.9/mapbox-gl-draw.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<link rel='stylesheet' href='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-draw/v1.0.9/mapbox-gl-draw.css' type='text/css' />
<!--IntroJS-->
<script type="text/javascript" src="intro.js-2.9.3/intro.js "></script>
<link href="intro.js-2.9.3/introjs.css" rel="stylesheet">
<!--
GoogleMaps API
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=&callback=initialize">
</script>-->
<title>PGO_navigation</title>
</head>
<body>
<div id='remove' class="info-box">
<div id="info">
<p>Plan your route in Pokemon Go.</p>
</div>
<div id='buttons-close-tutorial'>
<button class="close" onclick="hideshow()">Use it now</button>
<button class="tutorial" onclick="starttutorial()">Go to Tutorial</button>
</div>
</div>
<div id='tutorial_movie'>
</div>
<div id='geocoder' class='geocoder' data-step="1" data-intro="The map will show you the address entered here">
</div>
<div id="heatmap" data-step="2" data-intro="You can use this button to see the density of Pokestopes and Gyms">HEATMAP
<input type="checkbox" id="switch" /><label for="switch">heatmap</label>
</div>
<button id="infobutton" onclick="hideshow_tutorial()" data-step="3" data-intro="Here are some tips that you might find useful before using this map">i
</button>
<div id="directions">
</div>
<div id='map'></div>
</body>
</html>