-
Notifications
You must be signed in to change notification settings - Fork 12
/
misc-combine.html
117 lines (111 loc) · 4.4 KB
/
misc-combine.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
<!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 - combine</title>
</head>
<body>
<div id="map" class="map"></div>
<button id="switchlayer" type="button">Show sovereignty</button>
<script type="text/javascript">
// Declare a source for polygons
var vectorSourcePolygons = new ol.source.Vector();
var vectorLayerPolygons = new ol.layer.Vector({
source: vectorSourcePolygons,
style: [
new ol.style.Style({
stroke: new ol.style.Stroke({
color: [0, 121, 88, 1],
width: 2
})
})
]
});
var select = new ol.interaction.Select();
// Instanciate a map and add layers
var map = new ol.Map({
target: 'map',
layers: [
new ol.layer.Tile({
source: new ol.source.OSM()
}),
vectorLayerPolygons
],
view: new ol.View({
center: ol.proj.fromLonLat([-1.5603, 47.2383]),
zoom: 2
})
});
map.addInteraction(select);
var multis = ['MultiPoint', 'MultiLineString', 'MultiPolygon'];
var polygons;
fetch('assets/data/countries.json').then(function(response) {
return response.json().then(function(polys_fc) {
polygons = polys_fc;
var groups = polys_fc.features.reduce(function(prev, curr) {
var key = curr.properties.SOVEREIGNT;
if (Object.keys(prev).indexOf(key) === -1) {
prev[key] = [];
}
// We split Multi because turf.combine need
// Point, LineString or Polygon for input
if (multis.indexOf(curr.geometry.type) !== -1) {
var featuresArray = curr.geometry.coordinates.map(function(coord) {
return {
"type": "Feature",
"properties": curr.properties,
"geometry": {
"type": curr.geometry.type.replace('Multi', ''),
"coordinates": coord
}
};
});
prev[key] = prev[key].concat(featuresArray);
} else {
prev[key].push(curr);
}
return prev;
}, {});
var multiPolyFeatures = [];
for (k in groups) {
var featureCollectionMulti = turf.combine(turf.featureCollection(groups[k]));
var props = featureCollectionMulti.features[0].properties;
props.collectedProperties[0].parts = props.collectedProperties.length;
props = props.collectedProperties[0];
featureCollectionMulti.features[0].properties = props;
multiPolyFeatures.push(featureCollectionMulti.features[0]);
}
multiPolyFeatures.sort(function(a, b) {
return b.properties.parts - a.properties.parts;
});
geojsonBySovereignty = turf.featureCollection(multiPolyFeatures);
vectorSourcePolygons.addFeatures(geojsonToFeatures(polys_fc, {
featureProjection: 'EPSG:3857'
}));
});
});
var button = document.getElementById('switchlayer');
button.addEventListener('click', function(e) {
if (this.innerHTML === 'Show sovereignty') {
this.innerHTML = 'Show countries';
vectorSourcePolygons.clear();
vectorSourcePolygons.addFeatures(geojsonToFeatures(geojsonBySovereignty, {
featureProjection: 'EPSG:3857'
}));
} else {
this.innerHTML = 'Show sovereignty';
vectorSourcePolygons.clear();
vectorSourcePolygons.addFeatures(geojsonToFeatures(polygons, {
featureProjection: 'EPSG:3857'
}));
}
});
</script>
</body>
</html>