forked from Viglino/ol-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.layer.3D.html
161 lines (147 loc) · 4.54 KB
/
map.layer.3D.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<DOCTYPE html>
<html>
<head>
<!--
Copyright (c) 2015-2019 Jean-Marc VIGLINO,
released under CeCILL-B (french BSD like) licence: http://www.cecill.info/
-->
<title>Layer 3D</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="2.5D/3D buildings on an OL3 map" />
<meta name="keywords" content="ol3, layer, vector, 3D, buildings, animation" />
<!-- jQuery -->
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<!-- Openlayers -->
<link rel="stylesheet" href="https://openlayers.org/en/latest/css/ol.css" />
<script type="text/javascript" src="https://openlayers.org/en/latest/build/ol.js"></script>
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL,Object.assign"></script>
<!-- ol-ext -->
<link rel="stylesheet" href="../../dist/ol-ext.css" />
<script type="text/javascript" src="../../dist/ol-ext.js"></script>
<!-- Pointer events polyfill for old browsers, see https://caniuse.com/#feat=pointer -->
<script src="https://unpkg.com/elm-pep"></script>
<link rel="stylesheet" href="../style.css" />
<style>
#map {
position:fixed;
top: 4em;
left: 0;
right:0;
bottom:0;
margin:0;
}
.info {
position: fixed;
right: 0.5em;
top: 4em;
width: 300px;
z-index: 1;
}
.loading {
background: #fff;
border: 2px solid #369;
left: 50%;
margin: -2em -100px;
padding: 0.5em;
position: fixed;
text-align: center;
top: 50%;
width: 200px;
z-index: 1;
box-sizing: border-box;
box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
</style>
</head>
<body >
<a href="https://github.com/Viglino/ol-ext" class="icss-github-corner"><i></i></a>
<a href="../../index.html">
<h1>Layer 3D</h1>
</a>
<div class="info">
This example add a setRenderer3D function to vector layers that do the job in a postcompose loop.
<br />
Buildings from <a href="http://professionnels.ign.fr/bdtopo">BDTopo © IGN-France</a>.
<br />
POI informations from <a href="https://www.wikipedia.org/">WikiPedia</a>
<br/>
<button onclick="doAnime();">Animate!</button>
</div>
<!-- DIV pour la carte -->
<div id="map"></div>
<div class="loading">Please wait while loading data...</div>
<script type="text/javascript">
var layer = new ol.layer.Tile({ name:"OSM", source: new ol.source.OSM() });
// layer.addFilter(new ol.filter.Colorize('invert'));
// The map
var map = new ol.Map({
target: 'map',
view: new ol.View ({
zoom: 19,
center: [-245406, 5986536]// [-245575, 5986863], //[-244777, 5989809]
}),
interactions: ol.interaction.defaults(),
layers: [ layer ]
});
// Create layer
var vectorSource = new ol.source.Vector({
url: '../data/ignf.json',
// projection: 'EPSG:3857',
format: new ol.format.GeoJSON(),
attributions: [ "© <a href='http://professionnels.ign.fr/bdtopo'>ign.fr</a>" ]
});
var vector = new ol.layer.Vector({
source: vectorSource,
/*
style: new ol.style.Style({
fill: new ol.style.Fill({ color: '#333' })
}),
*/
maxResolution: 2
});
map.addLayer(vector);
var dbpSource = new ol.source.Vector({
url: '../data/dbpedia.json',
format: new ol.format.GeoJSON(),
attributions: [ "© DBPedia" ]
});
var dbp = new ol.layer.Vector({
source: dbpSource
});
map.addLayer(dbp);
// Set 3D renderer
var r3D = new ol.render3D({
/** /
style: new ol.style.Style({
stroke: new ol.style.Stroke({
color: 'blue',
width: 2
}),
fill: new ol.style.Fill({ color: 'red' })
}),
/**/
// ghost: true,
height:0,
maxResolution:0.6,
defaultHeight:3.5
});
vector.setRender3D(r3D);
var listenerKey = vectorSource.on('change', function(e) {
if (vectorSource.getState() == 'ready') {
ol.Observable.unByKey(listenerKey)
$(".loading").hide();
setTimeout (doAnime, 200);
}
});
var r3D2 = new ol.render3D({ height:100, maxResolution:10 });
dbp.setRender3D(r3D2);
var height = 0;
function doAnime() {
if (r3D.animating()) return;
r3D2.animate({ height: height ? 0:100 });
height = height ? 0 : "HAUTEUR";
r3D.animate({ height:height });
}
</script>
</body>
</html>