-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath-geojson-utils.js
59 lines (53 loc) · 1.49 KB
/
path-geojson-utils.js
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
function pathTo(node) {
let current = node;
const path = [];
while (current.parent) {
path.unshift(current);
current = current.parent;
}
return path;
}
function getLineString(path, color = "#9F5720", width = 3){
return {
"type": "Feature",
"properties": {
"stroke-width" : width,
"stroke": color,
"stroke-opacity": 1
},
"geometry": {
"type": "LineString",
"coordinates": path.map( n => [n.longitude, n.latitude])
}
}
}
function pathToGeoJson(path, alternatives = []){
let start = nodeToGeoJsonFeaturePoint(path[0], "#f02d61");
let end = nodeToGeoJsonFeaturePoint(path[path.length-1], "#2df06b");
return {
"type": "FeatureCollection",
"features": [start, end, ...alternatives, getLineString(path, "#2A6EF5",6)]
}
}
function nodeToGeoJsonFeaturePoint(node, color = "#7e7e7e"){
return {
"type": "Feature",
"properties": {
"marker-color": color
},
"geometry": {
"type": "Point",
"coordinates": [
node.longitude,
node.latitude
]
}
}
}
function graphToGeoJson(graph){
return {
"type": "FeatureCollection",
"features": graph.map( n => nodeToGeoJsonFeaturePoint(n, n.closed ? "#e927b0":"#42e964"))
}
}
module.exports = { pathTo, pathToGeoJson, getLineString, nodeToGeoJsonFeaturePoint, graphToGeoJson };