-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 1.5 KB
/
index.html
File metadata and controls
40 lines (37 loc) · 1.5 KB
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="leaflet/leaflet.css" />
<link rel="stylesheet" href="css/style.css" />
<title>Линии ЛЭП</title>
</head>
<body>
<div class="container">
<aside class="filter">
<div class="filter__group-creation">
<button class="filter__button">Создать новую <br>группу</button>
<select id="colorSelector">
<option value="blue">🔵 Синий</option>
<option value="white">⚪ Белый</option>
<option value="purple">🟣 Фиолетовый</option>
<option value="orange">🟠 Оранжевый</option>
<option value="red">🔴 Красный</option>
<option value="green">🟢 Зеленый</option>
<option value="yellow">🟡 Жёлтый</option>
<option value="brown">🟤 Коричневый</option>
</select>
</div>
<div class="filter__list">
</div>
</aside>
<main class="main">
<div class="map" id="map"></div>
<div class="legend"></div>
</main>
</div>
<script src="leaflet/leaflet.js"></script>
<script src="js/javascript.js"></script>
</body>
</html>