-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlandcover_layer_clipping.html
26 lines (23 loc) · 1.07 KB
/
landcover_layer_clipping.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
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ol3/3.18.2/ol.css" />
<link rel="stylesheet" href="css/landcover_stats.css" />
<title>OpenLayers3: Raster Manipulation: Land Cover</title>
</head>
<body>
<div id="map" class="map"></div>
<article id="controls" class="controls"></article>
<article id="stats" class="stats">
<div id="title" class="title"></div>
<div id="total" class="total"></div>
<div id="class_total" class="class_total"></div>
<div id="percent" class="percent"></div>
</article>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/ol3/3.18.2/ol.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript" src="js/lib/rgb-lab.js"></script>
<script type="text/javascript" src="js/landcover_classes.js"></script>
<script type="text/javascript" src="js/landcover_layer_clipping.js"></script>
</body>
</html>