-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.46 KB
/
index.html
File metadata and controls
38 lines (37 loc) · 1.46 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Hackatone 09 June 19</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://api-maps.yandex.ru/2.1/?apikey=c3422ecc-7947-4781-9bed-eb469d67021a&lang=ru_RU" type="text/javascript">
</script>
<script type="text/javascript" src="http://yandex.st/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="http://kashey.ru/maps/regions.js?1"></script>
<script type="text/javascript">
$(function() {
//todo: used inside get_color.js to resolve colored file name
// window.title = "heatmap.json";
load_heat_map("heatmap.json");
});
</script>
<script type="text/javascript" src="get_color.js"></script>
<script type="text/javascript" src="index.js"></script>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<h2>
Площадь и объем выполненных санитарно-оздоровительных мероприятий
(<a href="https://data.gov.ru/opendata/7705598840-sanitationactivities">источник</a>)
</h2>
<table width=100% height=800>
<tr valign=top>
<td width="280">
<div class="regionList"></div>
</td>
<td>
<div id="map" style="height: 100%; width: 100%; position: relative;"></div>
</td>
</tr>
</table>
</body>
</html>