-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
56 lines (56 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>OpenLayers + Proj4rs</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="ressources/css/style.css">
<body>
<header>OpenLayers + Proj4rs</header>
<h4 id="title">Image Reprojection</h4>
<container>
<div class="col-md-4 col-sm-6">
<a class="example bg-light border rounded" href="demo-pages/wms-image-custom-proj.html">
<strong>Single Image WMS with Proj4rs</strong><br>
<small>(wms-image-custom-proj.html)</small>
<p class="description">Example of integrating Proj4rs for coordinate transforms.</p>
</a>
</div>
<div class="col-md-4 col-sm-6">
<a class="example bg-light border rounded" href="demo-pages/reprojection-image.html">
<strong>Image Reprojection</strong><br>
<small>(reprojection-image.html)</small>
<p class="description">Demonstrates client-side reprojection of single image source.</p>
</a>
</div>
<div class="col-md-4 col-sm-6">
<a class="example bg-light border rounded" href="demo-pages/reprojection.html">
<strong>Raster Reprojection</strong><br>
<small>(reprojection.html)</small>
<p class="description">Demonstrates client-side raster reprojection between various projections.</p>
</a>
</div>
<div class="col-md-4 col-sm-6">
<a class="example bg-light border rounded" href="demo-pages/sphere-mollweide.html">
<strong>Sphere Mollweide</strong><br>
<small>(sphere-mollweide.html)</small>
<p class="description">Example of a Sphere Mollweide map with a Graticule layer.</p>
</a>
</div>
<div class="col-md-4 col-sm-6">
<a class="example bg-light border rounded" href="demo-pages/vector-projections.html">
<strong>Vector projections</strong><br>
<small>(vector-projections.html)</small>
<p class="description">This example shows a GeoJSON layer that is well converted between various projections.</p>
</a>
</div>
<div class="col-md-4 col-sm-6">
<a class="example bg-light border rounded" href="demo-pages/bundeslander-3044.html">
<strong>Bundeslander on EPSG:3044</strong><br>
<small>(bundeslander-3044.html)</small>
<p class="description">Proj4rs can integrate the ESPG:3044 projection.</p>
</a>
</div>
</container>
</body>
</html>