-
Notifications
You must be signed in to change notification settings - Fork 12
/
transformation-union.html
83 lines (75 loc) · 2.92 KB
/
transformation-union.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
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://rawcdn.githack.com/openlayers/openlayers.github.io/master/en/v5.3.0/css/ol.css" type="text/css">
<link rel="stylesheet" href="assets/css/styles.css" type="text/css">
<script src="//cdn.jsdelivr.net/npm/@turf/turf@5/turf.min.js"></script>
<script src="https://rawcdn.githack.com/openlayers/openlayers.github.io/master/en/v5.3.0/build/ol.js"></script>
<script src="assets/js/es6-promise.min.js"></script>
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL,fetch"></script>
<script src="assets/js/helpers.js"></script>
<title>Turf and OpenLayers 3 - Union</title>
</head>
<body>
<div id="map" class="map"></div>
<button id="switchlayer" type="button">Show polygons union</button>
<script type="text/javascript">
// Declare a source for points and
// for future convex polygon deduced from them
var vectorUnionPolygon = new ol.source.Vector();
var vectorLayerUnionPolygon = new ol.layer.Vector({
source: vectorUnionPolygon
});
// Instanciate a map and add layers
var map = new ol.Map({
target: 'map',
layers: [
new ol.layer.Tile({
source: new ol.source.OSM()
}),
vectorLayerUnionPolygon
],
view: new ol.View({
center: ol.proj.fromLonLat([-1.555493, 47.216151]),
zoom: 12
})
});
var polygons, union;
fetch('assets/data/union.geojson').then(function(response) {
return response.json().then(function(polygons_fc) {
console.log(polygons_fc.features);
polygons = polygons_fc;
var features = polygons_fc.features;
// Simple way but we could also use recursive function
for (var i = 1, len = features.length; i < len; i++) {
if (i == 1) {
union = turf.union(features[i - 1], features[i]);
} else {
union = turf.union(union, features[i]);
}
}
console.log(union);
vectorUnionPolygon.addFeatures(geojsonToFeatures(polygons_fc, {
featureProjection: 'EPSG:3857'
}));
});
});
var button = document.getElementById('switchlayer');
button.addEventListener('click', function(e) {
if (this.innerHTML === 'Show polygons union') {
this.innerHTML = 'Show polygons before union';
vectorUnionPolygon.clear();
vectorUnionPolygon.addFeatures(geojsonToFeatures(union, {
featureProjection: 'EPSG:3857'
}));
} else {
this.innerHTML = 'Show polygons union';
vectorUnionPolygon.clear();
vectorUnionPolygon.addFeatures(geojsonToFeatures(polygons, {
featureProjection: 'EPSG:3857'
}));
}
})
</script>
</body>
</html>