diff --git a/static/map-data/minecraft/mc-sdf-org/map.js b/static/map-data/minecraft/mc-sdf-org/map.js index e0d506b..3e22d89 100644 --- a/static/map-data/minecraft/mc-sdf-org/map.js +++ b/static/map-data/minecraft/mc-sdf-org/map.js @@ -53,32 +53,45 @@ fetch('/map-data/minecraft/mc-sdf-org/markers.json') marker.bindPopup(waypoint.name); }); - // Subway Lines - markers.lines.subway_lines.forEach(line => { - // Iterate over each point pair - line.point_pairs.forEach(pair => { - var map_line_obj = L.polyline([ - [pair.from.z * -1, pair.from.x], - [pair.to.z * -1, pair.to.x], - ], { - color: line.color, - opacity: 0.5, - - }).addTo(overlayLayers["Subway Lines"]); - map_line_obj.bindPopup(line.name); - }); - }); - // Areas markers.areas.forEach(area => { var bounds = [ [area.top_left.z * -1, area.top_left.x], [area.bottom_right.z * -1, area.bottom_right.x], ]; - var area_obj = L.rectangle(bounds, {color:"#00000000", fillOpacity: 0.2 }).addTo(clickable_areas); + var area_obj = L.rectangle(bounds, { color: "#00000000", fillOpacity: 0.2 }).addTo(clickable_areas); area_obj.bindPopup(area.name); }); }); +fetch('/map-data/minecraft/mc-sdf-org/subway_lines.json') + .then(response => response.json()) + .then(lines => { + lines.forEach(line => { + // // Iterate over each point pair + // line.point_pairs.forEach(pair => { + // var map_line_obj = L.polyline([ + // [pair.from.z * -1, pair.from.x], + // [pair.to.z * -1, pair.to.x], + // ], { + // color: line.color, + // opacity: 0.5, + + // }).addTo(overlayLayers["Subway Lines"]); + // map_line_obj.bindPopup(line.name); + // }); + + // Each line has a list of line segments + line.line_segments.forEach(segment => { + // Each line segment is a list of coordinates + var coords = segment.map(coord => [coord.z * -1, coord.x]); + var map_line_obj = L.polyline(coords, { + color: line.color, + opacity: 0.75, + }).addTo(overlayLayers["Subway Lines"]); + map_line_obj.bindPopup(line.name); + }); + }); + }); // Add the layers to the map L.control.layers(layers, overlayLayers).addTo(map); diff --git a/static/map-data/minecraft/mc-sdf-org/markers.json b/static/map-data/minecraft/mc-sdf-org/markers.json index 1552b02..759571a 100644 --- a/static/map-data/minecraft/mc-sdf-org/markers.json +++ b/static/map-data/minecraft/mc-sdf-org/markers.json @@ -518,9 +518,30 @@ "x": -1033, "z": 1087 } + }, + { + "from": { + "x": -220, + "z": -186 + }, + "to": { + "x": -220, + "z": 1175 + } + }, + { + "from": { + "x": -220, + "z": -186 + }, + "to": { + "x": -220, + "z": -1797 + } } ] } + ] }, "areas": [ diff --git a/static/map-data/minecraft/mc-sdf-org/subway_lines.json b/static/map-data/minecraft/mc-sdf-org/subway_lines.json new file mode 100644 index 0000000..df24609 --- /dev/null +++ b/static/map-data/minecraft/mc-sdf-org/subway_lines.json @@ -0,0 +1,124 @@ +[ + { + "name": "Sky Train", + "color": "red", + "line_segments": [ + [ + { + "x": 0, + "z": 0 + } + ] + ] + }, + { + "name": "Xnor50 Line", + "color": "grey", + "line_segments": [ + [ + { + "x": -137, + "z": -119 + }, + { + "x": -137, + "z": -100 + }, + { + "x": -207, + "z": -100 + }, + { + "x": -206, + "z": -303 + }, + { + "x": -206, + "z": -433 + }, + { + "x": -249, + "z": -433 + } + ] + ] + }, + { + "name": "Yellow Line", + "color": "yellow", + "line_segments": [ + [ + { + "x": 0, + "z": 0 + } + ] + ] + }, + { + "name": "Green Line", + "color": "green", + "line_segments": [ + [ + { + "x": -97, + "z": -467 + }, + { + "x": -136, + "z": -467 + }, + { + "x": -136, + "z": -463 + }, + { + "x": -149, + "z": -463 + } + ], + [ + { + "x": -97, + "z": -478 + }, + { + "x": -149, + "z": -478 + }, + { + "x": -149, + "z": -394 + }, + { + "x": -146, + "z": -394 + }, + { + "x": -146, + "z": -282 + }, + { + "x": -190, + "z": -282 + } + ], + [ + { + "x": -97, + "z": -482 + } + ], + [ + { + "x": -97, + "z": -493 + } + ] + ] + }, + { + "name": "Blue Line", + "color": "blue" + } +] \ No newline at end of file