-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (58 loc) · 2.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dassault Systèmes Demo</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-multiselect/0.9.13/css/bootstrap-multiselect.css"/>
<link rel="stylesheet" href="src/css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-multiselect/0.9.13/js/bootstrap-multiselect.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/proj4js/2.3.15/proj4.js"></script>
<script src="https://cdn.anychart.com/releases/v8/themes/dark_blue.min.js"></script>
<script src="https://cdn.anychart.com/releases/v8/js/anychart-bundle.min.js"></script>
<script src="https://cdn.anychart.com/geodata/2.1.0/countries/united_states_of_america/united_states_of_america.js"></script>
<script src="src/js/data.js"></script>
<script src="src/js/index.js"></script>
</head>
<body>
<div id="filterUi">
<div class="btn-group" role="group">
<label for="filter-years">Years: </label>
<span class="multiselect-native-select">
<select class="filter-select" id="filter-years" multiple="multiple">
<optgroup label="All years" class="group-1" id="filter-years-all"></optgroup>
</select>
</span>
</div>
<div class="btn-group">
<label for="filter-products">Products: </label>
<span class="multiselect-native-select">
<select class="filter-select" id="filter-products" multiple="multiple">
<optgroup label="All products" class="group-1" id="filter-products-all"></optgroup>
</select>
</span>
</div>
<div class="btn-group">
<label for="filter-regions">Regions: </label>
<span class="multiselect-native-select">
<select class="filter-select" id="filter-regions" multiple="multiple">
<optgroup label="All regions" class="group-1" id="filter-regions-all"></optgroup>
</select>
</span>
</div>
<div class="btn-group">
<a class="btn btn-default" id="reset-btn">Reset</a>
</div>
</div>
<div id="container"></div>
<!-- This library enables the automatic resizing of the height and width of
both same and cross domain iFrames to fit their contained content. -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.6.3/iframeResizer.contentWindow.min.js"></script>
</body>
</html>