-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
executable file
·44 lines (42 loc) · 1.87 KB
/
map.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
<!DOCTYPE html>
<!--[if IEMobile 7]><html class="iem7" lang="ru" dir="ltr"><![endif]-->
<!--[if lte IE 6]><html class="lt-ie9 lt-ie8 lt-ie7" lang="ru" dir="ltr"><![endif]-->
<!--[if (IE 7)&(!IEMobile)]><html class="lt-ie9 lt-ie8" lang="ru" dir="ltr"><![endif]-->
<!--[if IE 8]><html class="lt-ie9" lang="ru" dir="ltr"><![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7)]><!-->
<html lang="ru" dir="ltr" prefix="content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ og: http://ogp.me/ns# rdfs: http://www.w3.org/2000/01/rdf-schema# sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema#">
<!--<![endif]-->
<head>
<title>Количество пациентов</title>
<meta charset="utf-8" />
<meta name="MobileOptimized" content="width">
<meta name="HandheldFriendly" content="true">
<meta name="viewport" content="width=device-width">
<meta http-equiv="cleartype" content="on">
<style>
@import url("./css/map.css");
</style>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="./js/d3.js"></script>
<script src="./js/queue.v1.min.js"></script>
<script src="./js/topojson.js"></script>
</head>
<body class="html" >
<h3>Количество пациентов</h2>
<div class="section">
<div id="d3-map" class="d3-map-container"></div>
<div class="d3-legend-map-container-wrapper">
<div>Выберите год</div>
<div class="select-year">
<select id="select-year">
<option value="2017">2017</option>
<option value="2018">2018</option>
</select>
</div>
<div>Количество пациентов</div>
<div id="d3-legend-map" class="d3-legend-map-container"></div>
</div>
</div>
<script src="./js/run_map.js"></script>
</body>
</html>