-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdomain.html
37 lines (35 loc) · 984 Bytes
/
domain.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>NWP model domains</title>
<link rel="stylesheet" type="text/css" href="include/dhtmlx4/codebase/dhtmlx.css">
<link rel="stylesheet" type="text/css" href="include/ol.css">
<script type="text/javascript" src="include/dhtmlx4/codebase/dhtmlx.js"></script>
<script type="text/javascript" src="include/proj4.js"></script>
<script type="text/javascript" src="include/ol.js"></script>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0px;
overflow: hidden;
background-color: #EBEBEB;
}
td.blank {
color: white;
margin-bottom: 15px;
}
div.cell {
position: relative;
width: 100%;
height: 100%;
overflow: auto;
}
</style>
<script type="text/javascript" src="domain_main.js"></script>
</head>
<body onload="buildInterface()">
<div id="mapholder"></div>
</body>
</html>