-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (94 loc) · 4.53 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description"
content="Dual map - synchronize views of different map types side by side. Compare data from different sources."/>
<meta name="google-site-verification" content="nA-nEuajnyMLhnXSspd776PsxEann358NY0Orw8jhnQ"/>
<title>Dual Map - synchronize views of different map types side by side</title>
<script type="module" src="/src/main.ts"></script>
<link rel="icon" type="image/svg+xml"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🗺</text></svg>">
</head>
<body>
<header>
<nav class="choice js-layer-type">
<input type="radio" id="osm" name="layer-type" value="OSM">
<label for="osm">OSM</label>
<input type="radio" id="osmde" name="layer-type" value="OSM DE">
<label for="osmde">OSM DE</label>
<input type="radio" id="humanitarian" name="layer-type" value="Humanitarian">
<label for="humanitarian">Humanitarian</label>
<input type="radio" id="topography" name="layer-type" value="Topography">
<label for="topography">Topography</label>
<input type="radio" id="cyclo" name="layer-type" value="Cyclo">
<label for="cyclo">Cyclo</label>
<input type="radio" id="satellite" name="layer-type" value="Satellite">
<label for="satellite">Satellite</label>
<input type="radio" id="rail" name="layer-type" value="Rail">
<label for="rail">Rail</label>
</nav>
<nav class="choice js-proportion">
<input type="radio" id="w50" name="width" value="w50">
<label for="w50">=</label>
<input type="radio" id="w66" name="width" value="w66">
<label for="w66">≠</label>
</nav>
<nav class="choice">
<input type="checkbox" id="about" name="about">
<label for="about">About</label>
</nav>
<nav class="choice js-map-type">
<input type="radio" id="wikimapia" name="map-type" value="wiki">
<label for="wikimapia">Wikimapia</label>
<input type="radio" id="google-maps" name="map-type" value="google">
<label for="google-maps">Google Maps</label>
<input type="radio" id="streetview" name="map-type" value="streetview">
<label for="streetview">Street view</label>
<input type="radio" id="osmb" name="map-type" value="osmb">
<label for="osmb">3D</label>
<input type="radio" id="bing" name="map-type" value="bing">
<label for="bing">Bing Maps</label>
<input type="radio" id="adsb" name="map-type" value="adsb">
<label for="adsb">Air traffic</label>
</nav>
</header>
<dialog id="about-dialog">
<button id="close-about" title="Close">Close</button>
<h1>Dual map</h1>
<p>Dual map is a web application that allows you to synchronize views of different map types side by side.</p>
<p>Compare satellite views with 3D buildings layer, railroads with Bing maps, typography and air traffic map. You
decide!</p>
<h2>Keyboard shortcuts</h2>
<ul>
<li><kbd>1</kbd> - Toggle axis displaying</li>
<li><kbd>2</kbd> - Import URL from Google Maps</li>
</ul>
<h2>Built with:</h2>
<ul>
<li>The best library for dealing with <a href="https://www.openstreetmap.org/">Open Street Maps</a> -
<a href="https://leafletjs.com/">Leaflet</a>.
</li>
<li><a href="https://github.com/smeijer/leaflet-geosearch" title="Leaflet.GeoSearch">Leaflet.GeoSearch</a></li>
<li><a href="https://github.com/NLTGit/Leaflet.LinearMeasurement" title="Leaflet Linear Measurement Plugin">Leaflet
Linear Measurement Plugin</a></li>
<li><a href="https://osmbuildings.org/">OSM Buildings</a></li>
<li><a href="https://wikimapia.org/">Wikimapia</a></li>
<li><a href="https://www.google.com/maps">Google Maps</a></li>
<li><a href="https://www.bing.com/maps">Bing maps</a></li>
<li><a href="https://www.adsbexchange.com/">ADSB Exchange</a></li>
<li><a href="https://vite.dev/" title="The Build Tool for the Web">Vite</a></li>
</ul>
</dialog>
<main class="layout js-layout">
<aside class="layout__left js-osm">
</aside>
<aside class="layout__right js-map">
</aside>
</main>
<div class="axis axis__horizontal"></div>
<div class="axis axis__vertical axis__vertical--left"></div>
<div class="axis axis__vertical axis__vertical--right"></div>
</body>
</html>