diff --git a/static/map-data/icons/house.png b/static/map-data/icons/house.png deleted file mode 100644 index da024e5..0000000 Binary files a/static/map-data/icons/house.png and /dev/null differ diff --git a/static/map-data/icons/subway.png b/static/map-data/icons/subway.png deleted file mode 100644 index eac0008..0000000 Binary files a/static/map-data/icons/subway.png and /dev/null differ diff --git a/static/map-data/icons/world.png b/static/map-data/icons/world.png deleted file mode 100644 index 8ec6efe..0000000 Binary files a/static/map-data/icons/world.png and /dev/null differ diff --git a/static/map-data/minecraft/fix_xaero_tile_names.py b/static/map-data/minecraft/fix_xaero_tile_names.py deleted file mode 100644 index 31acf64..0000000 --- a/static/map-data/minecraft/fix_xaero_tile_names.py +++ /dev/null @@ -1,58 +0,0 @@ -import argparse -import sys -import logging -import re -import json -from pathlib import Path - -logger = logging.getLogger(__name__) - -def main() -> int: - # Handle program arguments - ap = argparse.ArgumentParser(description='Fixes the names of Xaero\'s Minimap tiles to be used in leaflet') - ap.add_argument('input', help='The input directory containing the tiles', type=Path) - ap.add_argument('-v', '--verbose', help='Enable verbose logging', action='store_true') - args = ap.parse_args() - - # Configure logging - logging.basicConfig( - level=logging.DEBUG if args.verbose else logging.INFO, - format='%(levelname)s: %(message)s', - ) - - # Find all PNGs - pngs = list(args.input.glob('*.png')) - - # Look for PNGs with the bad format (0_0_x-1_z-1.png) - name_re = re.compile(r"(\d+)_(\d+)_x(-?\d+)_z(-?\d+).png") - tiles = [] - for file in pngs: - file_name = file.name - match = name_re.match(file_name) - if match: - # Extract the coordinates - chunk_x, chunk_z, world_x, world_z = match.groups() - - # Rename the file - new_name = f"xaero_tile_{world_x}_{world_z}.png" - new_path = file.with_name(new_name) - logger.info(f"Renaming {file_name} to {new_name}") - file.rename(new_path) - - tiles.append({ - "x": int(world_x), - "z": int(world_z), - "chunk_x": int(chunk_x), - "chunk_z": int(chunk_z), - "image": new_name - }) - - # Write a JSON file with the tile data - with open(args.input / "tiles.json", "w") as f: - json.dump(tiles, f, indent=4) - - - return 0 - -if __name__ == "__main__": - sys.exit(main()) \ No newline at end of file diff --git a/static/map-data/minecraft/mc-sdf-org/map.js b/static/map-data/minecraft/mc-sdf-org/map.js deleted file mode 100644 index 5263483..0000000 --- a/static/map-data/minecraft/mc-sdf-org/map.js +++ /dev/null @@ -1,138 +0,0 @@ -const TILE_SIZE = 1024; - - -// Set up the map -var map = L.map('map', { - crs: L.CRS.Simple, - minZoom: -3, - maxZoom: 3, - backgroundColor: '#000000', -}); -map.attributionControl.addAttribution('With help from: DraconicNEO'); - -// Create storage for the tile layers -var layers = { - "Blank": L.layerGroup(), - "Caves": L.layerGroup(), - "Surface": L.layerGroup().addTo(map), -}; - -// Make a request to discover cave tiles -fetch('/map-data/minecraft/mc-sdf-org/tiles/caves/tiles.json') - .then(response => response.json()) - .then(tiles => { - // Add each tile - tiles.forEach(tile => { - var bounds = [[tile.z * -1, tile.x], [(tile.z + TILE_SIZE) * -1, tile.x + TILE_SIZE]]; - var image = L.imageOverlay(`/map-data/minecraft/mc-sdf-org/tiles/caves/${tile.image}`, bounds).addTo(layers.Caves); - }); - }); -fetch('/map-data/minecraft/mc-sdf-org/tiles/surface/tiles.json') - .then(response => response.json()) - .then(tiles => { - // Add each tile - tiles.forEach(tile => { - var bounds = [[tile.z * -1, tile.x], [(tile.z + TILE_SIZE) * -1, tile.x + TILE_SIZE]]; - var image = L.imageOverlay(`/map-data/minecraft/mc-sdf-org/tiles/surface/${tile.image}`, bounds).addTo(layers.Surface); - }); - }); - -// Create overlay layers -var overlayLayers = { - "Subway Stations": L.layerGroup().addTo(map), - "Subway Lines": L.layerGroup().addTo(map), -} -var clickable_areas = L.layerGroup().addTo(map); - -// Add markers -fetch('/map-data/minecraft/mc-sdf-org/markers.json') - .then(response => response.json()) - .then(markers => { - // Subway Stations - markers.waypoints.subway_stations.forEach(waypoint => { - var marker = L.marker([waypoint.z * -1, waypoint.x], { icon: L.icon({ iconUrl: '/map-data/icons/subway.png', iconSize: [16, 16], }) }).addTo(overlayLayers["Subway Stations"]); - marker.bindPopup(waypoint.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); - 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); - -// Make the viewport look at the center of the map -map.fitBounds([ - [-TILE_SIZE, -TILE_SIZE], - [TILE_SIZE, TILE_SIZE] -]); - -// Add a CSS rule to pixelate the image only when zoomed in -map.on('zoomend', function (e) { - let element = document.querySelector('#leaflet-pixelator'); - if (map.getZoom() >= 2) { - if (element) return; - document.head.insertAdjacentHTML('beforeend', ''); - } else { - if (element) { - element.remove(); - } - } -}); - -// Create a mouse position display -var mousePosition = L.control({ position: 'bottomleft' }); -mousePosition.onAdd = function (map) { - this._div = L.DomUtil.create('div', 'mouse-position'); - this._div.style.padding = '5px'; - this._div.style.backgroundColor = 'rgba(255, 255, 255, 0.5)'; - this._div.style.border = '1px solid #000000'; - this._div.style.borderRadius = '5px'; - this._div.style.display = 'none'; - return this._div; -}; -mousePosition.addTo(map); - -// Update the mouse position display -map.on('mousemove', function (e) { - var x = Math.floor(e.latlng.lng); - var z = Math.floor(e.latlng.lat * -1); - mousePosition._div.innerHTML = `X: ${x}, Z: ${z}`; - mousePosition._div.style.display = ''; -}); diff --git a/static/map-data/minecraft/mc-sdf-org/markers.json b/static/map-data/minecraft/mc-sdf-org/markers.json deleted file mode 100644 index 759571a..0000000 --- a/static/map-data/minecraft/mc-sdf-org/markers.json +++ /dev/null @@ -1,560 +0,0 @@ -{ - "waypoints": { - "subway_stations": [ - { - "x": -252, - "z": -433, - "name": "Northern & Bee Station" - }, - { - "x": -220, - "z": -186, - "name": "Monument Place Station" - }, - { - "x": -236, - "z": -181, - "name": "[ZOG] Zombie Grinder Station" - }, - { - "x": -204, - "z": 578, - "name": "[PMI] Prismarine Inn Station" - }, - { - "x": -322, - "z": 364, - "name": "[DSW] Dismal Swamp Station" - }, - { - "x": -322, - "z": 41, - "name": "[APY] Apiary Station" - }, - { - "x": -316, - "z": 43, - "name": "[APY] Apiary Station" - }, - { - "x": -270, - "z": 5, - "name": "Southwest Blvd" - }, - { - "x": -263, - "z": -45, - "name": "Southlands" - }, - { - "x": -263, - "z": -85, - "name": "Three Sisters" - }, - { - "x": -268, - "z": -127, - "name": "Small Hall Station" - }, - { - "x": -256, - "z": -151, - "name": "Monument Place Station" - }, - { - "x": -256, - "z": -180, - "name": "Zombie Grinder Station" - }, - { - "x": -242, - "z": -227, - "name": "DOJO St Station" - }, - { - "x": -202, - "z": -229, - "name": "New Cornick House Station" - }, - { - "x": -184, - "z": -243, - "name": "Wintergarden Station" - }, - { - "x": 225, - "z": -293, - "name": "[PRU] Pine Ruins Station" - }, - { - "x": 143, - "z": -291, - "name": "[CSD] Canalside Station" - }, - { - "x": -213, - "z": -264, - "name": "Spawn Central Station" - }, - { - "x": -510, - "z": 137, - "name": "[SWL] Southwest Landing Station" - }, - { - "x": -326, - "z": 41, - "name": "[APY] Apiary Station" - }, - { - "x": -229, - "z": -181, - "name": "[ZOG] Zombie Grinder Station" - }, - { - "x": -27, - "z": 63, - "name": "[WCP] Whitecaps Station" - }, - { - "x": -27, - "z": 7, - "name": "[MTV] Mountain Village Station" - }, - { - "x": -31, - "z": -237, - "name": "[ESJ] Eastside Transfer" - }, - { - "x": -245, - "z": -49, - "name": "[SOU] Southlands Terminal" - }, - { - "x": -218, - "z": -137, - "name": "Monument Place Station" - }, - { - "x": -213, - "z": -252, - "name": "Spawn Central Station" - }, - { - "x": -899, - "z": -607, - "name": "Mountain Station" - }, - { - "x": -900, - "z": -4187, - "name": "Mensa Club Station" - }, - { - "x": -1630, - "z": -2316, - "name": "Farmington Station" - }, - { - "x": -2143, - "z": -2315, - "name": "Village Layover Station" - }, - { - "x": -2135, - "z": -1015, - "name": "Twin Peaks Station" - }, - { - "x": -2143, - "z": -1523, - "name": "Witchy Swamp Station" - }, - { - "x": -2726, - "z": -186, - "name": "Ocean Overlook Station" - }, - { - "x": 927, - "z": 1223, - "name": "End Portal Station" - }, - { - "x": -1048, - "z": -94, - "name": "Craniumslows Station" - }, - { - "x": -1372, - "z": 507, - "name": "Sheep Station" - }, - { - "x": -1372, - "z": 659, - "name": "Cow Station" - }, - { - "x": -1372, - "z": 1088, - "name": "South Station" - }, - { - "x": -1568, - "z": 909, - "name": "1567 Station" - }, - { - "x": -1372, - "z": 908, - "name": "Magenta Station" - }, - { - "x": -700, - "z": -185, - "name": "Dark Oak Station" - }, - { - "x": -536, - "z": -187, - "name": "Cat Ave Station" - }, - { - "x": -220, - "z": 1176, - "name": "End of Line" - }, - { - "x": -220, - "z": 6, - "name": "Unknown Station" - }, - { - "x": -219, - "z": -254, - "name": "Spawn Glider Port Station" - }, - { - "x": -219, - "z": -375, - "name": "Bell Bridge / Changa Station" - }, - { - "x": -219, - "z": -481, - "name": "Eccentric Genius Station" - }, - { - "x": -219, - "z": -552, - "name": "Xiled Station" - }, - { - "x": -219, - "z": -650, - "name": "Nopantsistan Station" - }, - { - "x": -220, - "z": -1797, - "name": "[HLV] Highland Village Station" - }, - { - "x": -187, - "z": -1254, - "name": "[MSW] Mid-Swamp Station" - }, - { - "x": -187, - "z": -782, - "name": "[JOT] Jotaku Station" - }, - { - "x": -197, - "z": -719, - "name": "[NSX] Northside Transfer Station" - }, - { - "x": -217, - "z": -275, - "name": "Spawn Central Station" - }, - { - "x": -245, - "z": -366, - "name": "[NRV] North River Station" - }, - { - "x": -245, - "z": -258, - "name": "[CMK] Central Market Station" - }, - { - "x": -219, - "z": -137, - "name": "Monument Place Station" - }, - { - "x": -220, - "z": -137, - "name": "Monument Place Station" - }, - { - "x": -120, - "z": -481, - "name": "Survey Hall Station" - }, - { - "x": -143, - "z": -304, - "name": "Inventory Station" - }, - { - "x": -115, - "z": -256, - "name": "Spawn Square Station" - }, - { - "x": 63, - "z": -215, - "name": "Tek Square Station" - }, - { - "x": -36, - "z": -225, - "name": "Manor Ave Station" - }, - { - "x": -141, - "z": -225, - "name": "Spawn Square Station" - }, - { - "x": -221, - "z": -226, - "name": "DOJO St Station" - }, - { - "x": -389, - "z": -222, - "name": "Mob St Station" - }, - { - "x": -491, - "z": -222, - "name": "[CAT] Cat Ave Station" - }, - { - "x": -624, - "z": 310, - "name": "Garfield Station" - }, - { - "x": -616, - "z": -222, - "name": "Castle Square Station" - }, - { - "x": -187, - "z": -373, - "name": "[CHA] Changa Station" - }, - { - "x": -187, - "z": -477, - "name": "[ECG] Eccentric Genius" - }, - { - "x": -187, - "z": -575, - "name": "[XIL] Xiled Station" - }, - { - "x": -187, - "z": -662, - "name": "[NOP] Nopantsistan Station" - }, - { - "x": -187, - "z": -720, - "name": "[NSX] Northside Transfer" - }, - { - "x": -245, - "z": -665, - "name": "[NPN] Nopantsistan Station" - }, - { - "x": -245, - "z": -543, - "name": "[LAY] Laydros Station" - }, - { - "x": -900, - "z": -1992, - "name": "Red Station" - }, - { - "x": -72, - "z": -1946, - "name": "[NSC] North Shore City Terminal" - }, - { - "x": -183, - "z": -1949, - "name": "[NSJ] North Shore Junction" - }, - { - "x": -187, - "z": -1736, - "name": "[HLV] Highland Village Station" - }, - { - "x": -187, - "z": -1519, - "name": "[NDK] North Docks Station" - }, - { - "x": -187, - "z": -839, - "name": "[BOH] Boathouse Station" - }, - { - "x": -189, - "z": -321, - "name": "[RST] Riverside Station" - }, - { - "x": -213, - "z": -258, - "name": "Spawn Central Station" - } - ] - }, - "lines": { - "subway_lines": [ - { - "name": "Skytrain", - "color": "red", - "point_pairs": [ - { - "from": { - "x": 927, - "z": 1223 - }, - "to": { - "x": 927, - "z": -186 - } - }, - { - "from": { - "x": 927, - "z": -186 - }, - "to": { - "x": -4395, - "z": -186 - } - }, - { - "from": { - "x": -890, - "z": -186 - }, - "to": { - "x": -890, - "z": -322 - } - }, - { - "from": { - "x": -890, - "z": -322 - }, - "to": { - "x": -899, - "z": -322 - } - }, - { - "from": { - "x": -899, - "z": -322 - }, - "to": { - "x": -899, - "z": -4187 - } - }, - { - "from": { - "x": -1048, - "z": -186 - }, - "to": { - "x": -1048, - "z": -95 - } - }, - { - "from": { - "x": -1371, - "z": -186 - }, - "to": { - "x": -1371, - "z": 1087 - } - }, - { - "from": { - "x": -1371, - "z": 1087 - }, - "to": { - "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": [ - { - "name": "Spawn", - "top_left": { - "x": -147, - "z": -266 - }, - "bottom_right": { - "x": -126, - "z": -245 - } - } - ] -} \ No newline at end of file diff --git a/static/map-data/minecraft/mc-sdf-org/subway_lines.json b/static/map-data/minecraft/mc-sdf-org/subway_lines.json deleted file mode 100644 index fe7300e..0000000 --- a/static/map-data/minecraft/mc-sdf-org/subway_lines.json +++ /dev/null @@ -1,1210 +0,0 @@ -[ - { - "name": "Sky Train", - "color": "red", - "line_segments": [ - [ - { - "x": 927, - "z": 1223 - }, - { - "x": 927, - "z": -185 - }, - { - "x": -4395, - "z": -185 - } - ], - [ - { - "x": -219, - "z": -185 - }, - { - "x": -219, - "z": 1175 - } - ], - [ - { - "x": -891, - "z": -185 - }, - { - "x": -891, - "z": 66 - }, - { - "x": -979, - "z": 66 - }, - { - "x": -979, - "z": 907 - }, - { - "x": -979, - "z": 929 - }, - { - "x": -981, - "z": 929 - }, - { - "x": -981, - "z": 1019 - }, - { - "x": -994, - "z": 1032 - }, - { - "x": -1032, - "z": 1032 - }, - { - "x": -1032, - "z": 1087 - } - ], - [ - { - "x": -1032, - "z": 1087 - }, - { - "x": -1372, - "z": 1087 - }, - { - "x": -1372, - "z": -185 - } - ], - [ - { - "x": -1568, - "z": 909 - }, - { - "x": -1372, - "z": 909 - }, - { - "x": -1372, - "z": 908 - }, - { - "x": -896, - "z": 908 - } - ], - [ - { - "x": -1048, - "z": -94 - }, - { - "x": -1048, - "z": -185 - } - ], - [ - { - "x": -890, - "z": -185 - }, - { - "x": -890, - "z": -322 - }, - { - "x": -900, - "z": -322 - }, - { - "x": -900, - "z": -4187 - } - ], - [ - { - "x": -2110, - "z": -185 - }, - { - "x": -2110, - "z": -381 - }, - { - "x": -2134, - "z": -381 - }, - { - "x": -2134, - "z": -1033 - }, - { - "x": -2143, - "z": -1033 - }, - { - "x": -2143, - "z": -2315 - }, - { - "x": -1200, - "z": -2315 - }, - { - "x": -1200, - "z": -2320 - }, - { - "x": -901, - "z": -2320 - } - ], - [ - { - "x": -219, - "z": -186 - }, - { - "x": -220, - "z": -1797 - } - ] - ] - }, - { - "name": "Xnor50 Line", - "color": "brown", - "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": -74, - "z": -1942 - }, - { - "x": -171, - "z": -1942 - }, - { - "x": -171, - "z": -1937 - }, - { - "x": -185, - "z": -1937 - }, - { - "x": -185, - "z": -253 - }, - { - "x": -229, - "z": -253 - }, - { - "x": -229, - "z": -261 - }, - { - "x": -235, - "z": -261 - }, - { - "x": -235, - "z": -251 - }, - { - "x": -236, - "z": -248 - }, - { - "x": -239, - "z": -248 - }, - { - "x": -239, - "z": -239 - }, - { - "x": -238, - "z": -239 - }, - { - "x": -238, - "z": -226 - }, - { - "x": -236, - "z": -226 - }, - { - "x": -236, - "z": -223 - }, - { - "x": -203, - "z": -223 - }, - { - "x": -203, - "z": -115 - }, - { - "x": -200, - "z": -115 - }, - { - "x": -200, - "z": -92 - }, - { - "x": -201, - "z": -92 - }, - { - "x": -201, - "z": -86 - }, - { - "x": -205, - "z": -79 - }, - { - "x": -205, - "z": -43 - }, - { - "x": -243, - "z": -43 - }, - { - "x": -243, - "z": 27 - }, - { - "x": -311, - "z": 27 - }, - { - "x": -311, - "z": 66 - }, - { - "x": -320, - "z": 66 - }, - { - "x": -320, - "z": 577 - }, - { - "x": -201, - "z": 577 - } - ], - [ - { - "x": -74, - "z": -1944 - }, - { - "x": -173, - "z": -1944 - }, - { - "x": -173, - "z": -1939 - }, - { - "x": -187, - "z": -1939 - }, - { - "x": -187, - "z": -267 - }, - { - "x": -237, - "z": -267 - }, - { - "x": -237, - "z": -251 - }, - { - "x": -241, - "z": -251 - }, - { - "x": -241, - "z": -237 - }, - { - "x": -240, - "z": -237 - }, - { - "x": -240, - "z": -226 - }, - { - "x": -242, - "z": -226 - }, - { - "x": -242, - "z": -220 - }, - { - "x": -243, - "z": -220 - }, - { - "x": -243, - "z": -212 - }, - { - "x": -242, - "z": -212 - }, - { - "x": -242, - "z": -175 - }, - { - "x": -245, - "z": -175 - }, - { - "x": -245, - "z": 25 - }, - { - "x": -313, - "z": 25 - }, - { - "x": -313, - "z": 64 - }, - { - "x": -322, - "z": 64 - }, - { - "x": -322, - "z": 579 - }, - { - "x": -201, - "z": 579 - } - ], - [ - { - "x": -74, - "z": -1946 - }, - { - "x": -171, - "z": -1946 - }, - { - "x": -171, - "z": -1948 - }, - { - "x": -183, - "z": -1948 - }, - { - "x": -183, - "z": -1942 - }, - { - "x": -183, - "z": -249 - }, - { - "x": -212, - "z": -249 - } - ], - [ - { - "x": -74, - "z": -1948 - }, - { - "x": -183, - "z": -1948 - }, - { - "x": -183, - "z": -1942 - }, - { - "x": -189, - "z": -1942 - }, - { - "x": -189, - "z": -265 - }, - { - "x": -212, - "z": -265 - } - ] - ] - }, - { - "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": -108, - "z": -282 - }, - { - "x": -108, - "z": -196 - }, - { - "x": -170, - "z": -196 - }, - { - "x": -170, - "z": -185 - }, - { - "x": -193, - "z": -185 - }, - { - "x": -193, - "z": -115 - }, - { - "x": -196, - "z": -115 - }, - { - "x": -196, - "z": -92 - }, - { - "x": -191, - "z": -79 - }, - { - "x": -191, - "z": -44 - } - ], - [ - { - "x": -97, - "z": -482 - }, - { - "x": -153, - "z": -482 - }, - { - "x": -153, - "z": -394 - }, - { - "x": -156, - "z": -394 - }, - { - "x": -156, - "z": -276 - }, - { - "x": -120, - "z": -276 - }, - { - "x": -120, - "z": -206 - }, - { - "x": -238, - "z": -206 - }, - { - "x": -238, - "z": -175 - }, - { - "x": -235, - "z": -175 - }, - { - "x": -235, - "z": -73 - } - ], - [ - { - "x": -97, - "z": -493 - } - ] - ] - }, - { - "name": "Purple Line", - "color": "purple", - "line_segments": [ - [ - { - "x": -191, - "z": -717 - }, - { - "x": -243, - "z": -717 - }, - { - "x": -243, - "z": -244 - }, - { - "x": -242, - "z": -244 - }, - { - "x": -242, - "z": -208 - }, - { - "x": -216, - "z": -208 - }, - { - "x": -216, - "z": -180 - }, - { - "x": -217, - "z": -180 - }, - { - "x": -217, - "z": -159 - }, - { - "x": -212, - "z": -159 - }, - { - "x": -212, - "z": -5 - }, - { - "x": -224, - "z": -5 - }, - { - "x": -224, - "z": 32 - }, - { - "x": -320, - "z": 32 - }, - { - "x": -320, - "z": 62 - }, - { - "x": -324, - "z": 62 - }, - { - "x": -324, - "z": 89 - }, - { - "x": -350, - "z": 89 - }, - { - "x": -350, - "z": 112 - }, - { - "x": -506, - "z": 112 - }, - { - "x": -506, - "z": 140 - }, - { - "x": -543, - "z": 140 - } - ], - [ - { - "x": -191, - "z": -719 - }, - { - "x": -245, - "z": -719 - }, - { - "x": -245, - "z": -244 - }, - { - "x": -246, - "z": -244 - }, - { - "x": -246, - "z": -198 - }, - { - "x": -225, - "z": -198 - }, - { - "x": -225, - "z": -192 - }, - { - "x": -221, - "z": -185 - }, - { - "x": -221, - "z": -159 - }, - { - "x": -226, - "z": -159 - }, - { - "x": -226, - "z": 30 - }, - { - "x": -322, - "z": 30 - }, - { - "x": -322, - "z": 60 - }, - { - "x": -326, - "z": 60 - }, - { - "x": -326, - "z": 87 - }, - { - "x": -352, - "z": 87 - }, - { - "x": -352, - "z": 110 - }, - { - "x": -508, - "z": 110 - }, - { - "x": -509, - "z": 137 - }, - { - "x": -543, - "z": 137 - } - ] - ] - }, - { - "name": "Blue Line", - "color": "blue", - "line_segments": [ - [ - { - "x": 326, - "z": -211 - }, - { - "x": 131, - "z": -211 - }, - { - "x": 131, - "z": -206 - }, - { - "x": 114, - "z": -206 - }, - { - "x": 114, - "z": -203 - }, - { - "x": 41, - "z": -203 - }, - { - "x": 41, - "z": -211 - }, - { - "x": 27, - "z": -211 - }, - { - "x": 27, - "z": -221 - }, - { - "x": -113, - "z": -221 - }, - { - "x": -113, - "z": -216 - }, - { - "x": -172, - "z": -216 - }, - { - "x": -172, - "z": -224 - }, - { - "x": -237, - "z": -224 - }, - { - "x": -237, - "z": -218 - }, - { - "x": -249, - "z": -218 - }, - { - "x": -249, - "z": -214 - }, - { - "x": -267, - "z": -214 - }, - { - "x": -267, - "z": -217 - }, - { - "x": -277, - "z": -217 - }, - { - "x": -277, - "z": -218 - }, - { - "x": -453, - "z": -218 - }, - { - "x": -453, - "z": -214 - }, - { - "x": -473, - "z": -214 - }, - { - "x": -473, - "z": -218 - }, - { - "x": -549, - "z": -218 - }, - { - "x": -549, - "z": -217 - }, - { - "x": -564, - "z": -217 - }, - { - "x": -564, - "z": -216 - }, - { - "x": -601, - "z": -216 - }, - { - "x": -601, - "z": -213 - }, - { - "x": -615, - "z": -213 - }, - { - "x": -615, - "z": -131 - } - ], - [ - { - "x": 326, - "z": -213 - }, - { - "x": 29, - "z": -213 - }, - { - "x": 29, - "z": -223 - }, - { - "x": -173, - "z": -223 - }, - { - "x": -173, - "z": -224 - }, - { - "x": -237, - "z": -224 - }, - { - "x": -237, - "z": -221 - }, - { - "x": -251, - "z": -221 - }, - { - "x": -251, - "z": -216 - }, - { - "x": -263, - "z": -216 - }, - { - "x": -263, - "z": -219 - }, - { - "x": -275, - "z": -219 - }, - { - "x": -275, - "z": -220 - }, - { - "x": -569, - "z": -220 - }, - { - "x": -569, - "z": -219 - }, - { - "x": -597, - "z": -219 - }, - { - "x": -597, - "z": -218 - } - ], - [ - { - "x": 326, - "z": -215 - }, - { - "x": 131, - "z": -215 - }, - { - "x": 31, - "z": -215 - }, - { - "x": 31, - "z": -225 - }, - { - "x": -172, - "z": -225 - }, - { - "x": -172, - "z": -226 - }, - { - "x": -239, - "z": -226 - }, - { - "x": -239, - "z": -223 - }, - { - "x": -249, - "z": -223 - }, - { - "x": -249, - "z": -224 - }, - { - "x": -264, - "z": -224 - }, - { - "x": -264, - "z": -221 - }, - { - "x": -273, - "z": -221 - }, - { - "x": -273, - "z": -222 - }, - { - "x": -591, - "z": -222 - }, - { - "x": -591, - "z": -221 - }, - { - "x": -595, - "z": -221 - }, - { - "x": -612, - "z": -206 - }, - { - "x": -612, - "z": -177 - }, - { - "x": -616, - "z": -177 - }, - { - "x": -616, - "z": -125 - } - ], - [ - { - "x": 326, - "z": -217 - }, - { - "x": 131, - "z": -217 - }, - { - "x": 131, - "z": -222 - }, - { - "x": 113, - "z": -222 - }, - { - "x": 113, - "z": -225 - }, - { - "x": 34, - "z": -225 - }, - { - "x": 34, - "z": -227 - }, - { - "x": -113, - "z": -227 - }, - { - "x": -113, - "z": -232 - }, - { - "x": -160, - "z": -232 - }, - { - "x": -160, - "z": -230 - }, - { - "x": -172, - "z": -230 - }, - { - "x": -172, - "z": -226 - }, - { - "x": -267, - "z": -226 - }, - { - "x": -267, - "z": -224 - }, - { - "x": -453, - "z": -224 - }, - { - "x": -453, - "z": -228 - }, - { - "x": -473, - "z": -228 - }, - { - "x": -473, - "z": -224 - }, - { - "x": -593, - "z": -224 - }, - { - "x": -593, - "z": -225 - }, - { - "x": -598, - "z": -225 - }, - { - "x": -612, - "z": -236 - }, - { - "x": -612, - "z": -258 - } - ] - ] - } -] \ No newline at end of file diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/tiles.json b/static/map-data/minecraft/mc-sdf-org/tiles/caves/tiles.json deleted file mode 100644 index 06ef1d5..0000000 --- a/static/map-data/minecraft/mc-sdf-org/tiles/caves/tiles.json +++ /dev/null @@ -1,128 +0,0 @@ -[ - { - "x": -2560, - "z": -3584, - "chunk_x": 0, - "chunk_z": 1, - "image": "xaero_tile_-2560_-3584.png" - }, - { - "x": -2560, - "z": -2560, - "chunk_x": 0, - "chunk_z": 2, - "image": "xaero_tile_-2560_-2560.png" - }, - { - "x": -2560, - "z": -1536, - "chunk_x": 0, - "chunk_z": 3, - "image": "xaero_tile_-2560_-1536.png" - }, - { - "x": -2560, - "z": -512, - "chunk_x": 0, - "chunk_z": 4, - "image": "xaero_tile_-2560_-512.png" - }, - { - "x": -2560, - "z": 512, - "chunk_x": 0, - "chunk_z": 5, - "image": "xaero_tile_-2560_512.png" - }, - { - "x": -1536, - "z": -4608, - "chunk_x": 1, - "chunk_z": 0, - "image": "xaero_tile_-1536_-4608.png" - }, - { - "x": -1536, - "z": -3584, - "chunk_x": 1, - "chunk_z": 1, - "image": "xaero_tile_-1536_-3584.png" - }, - { - "x": -1536, - "z": -2560, - "chunk_x": 1, - "chunk_z": 2, - "image": "xaero_tile_-1536_-2560.png" - }, - { - "x": -1536, - "z": -1536, - "chunk_x": 1, - "chunk_z": 3, - "image": "xaero_tile_-1536_-1536.png" - }, - { - "x": -1536, - "z": -512, - "chunk_x": 1, - "chunk_z": 4, - "image": "xaero_tile_-1536_-512.png" - }, - { - "x": -1536, - "z": 512, - "chunk_x": 1, - "chunk_z": 5, - "image": "xaero_tile_-1536_512.png" - }, - { - "x": -512, - "z": -3584, - "chunk_x": 2, - "chunk_z": 1, - "image": "xaero_tile_-512_-3584.png" - }, - { - "x": -512, - "z": -2560, - "chunk_x": 2, - "chunk_z": 2, - "image": "xaero_tile_-512_-2560.png" - }, - { - "x": -512, - "z": -1536, - "chunk_x": 2, - "chunk_z": 3, - "image": "xaero_tile_-512_-1536.png" - }, - { - "x": -512, - "z": -512, - "chunk_x": 2, - "chunk_z": 4, - "image": "xaero_tile_-512_-512.png" - }, - { - "x": -512, - "z": 512, - "chunk_x": 2, - "chunk_z": 5, - "image": "xaero_tile_-512_512.png" - }, - { - "x": 512, - "z": -512, - "chunk_x": 3, - "chunk_z": 4, - "image": "xaero_tile_512_-512.png" - }, - { - "x": 512, - "z": 512, - "chunk_x": 3, - "chunk_z": 5, - "image": "xaero_tile_512_512.png" - } -] \ No newline at end of file diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-1536.png deleted file mode 100644 index 7a11c47..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-2560.png deleted file mode 100644 index c38e666..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-3584.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-3584.png deleted file mode 100644 index 70477d9..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-3584.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-4608.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-4608.png deleted file mode 100644 index 31836c1..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-4608.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-512.png deleted file mode 100644 index 3614df5..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_512.png deleted file mode 100644 index 2249cc4..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-1536_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_-1536.png deleted file mode 100644 index 4cdb03a..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_-2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_-2560.png deleted file mode 100644 index d02a54d..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_-2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_-3584.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_-3584.png deleted file mode 100644 index bd71fc7..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_-3584.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_-512.png deleted file mode 100644 index 9bf7ba0..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_512.png deleted file mode 100644 index cf5901b..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-2560_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_-1536.png deleted file mode 100644 index 065f815..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_-2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_-2560.png deleted file mode 100644 index 2c67eb6..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_-2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_-3584.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_-3584.png deleted file mode 100644 index 17ffc1f..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_-3584.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_-512.png deleted file mode 100644 index 391fa3d..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_512.png deleted file mode 100644 index 12430f4..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_-512_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_512_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_512_-512.png deleted file mode 100644 index b954b0e..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_512_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_512_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_512_512.png deleted file mode 100644 index e7e8538..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/caves/xaero_tile_512_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/tiles.json b/static/map-data/minecraft/mc-sdf-org/tiles/surface/tiles.json deleted file mode 100644 index c67204b..0000000 --- a/static/map-data/minecraft/mc-sdf-org/tiles/surface/tiles.json +++ /dev/null @@ -1,1059 +0,0 @@ -[ - { - "x": -761856, - "z": -329216, - "chunk_x": 0, - "chunk_z": 0, - "image": "xaero_tile_-761856_-329216.png" - }, - { - "x": -152576, - "z": -119296, - "chunk_x": 595, - "chunk_z": 205, - "image": "xaero_tile_-152576_-119296.png" - }, - { - "x": -82944, - "z": -38400, - "chunk_x": 663, - "chunk_z": 284, - "image": "xaero_tile_-82944_-38400.png" - }, - { - "x": -81920, - "z": -38400, - "chunk_x": 664, - "chunk_z": 284, - "image": "xaero_tile_-81920_-38400.png" - }, - { - "x": -80896, - "z": -37376, - "chunk_x": 665, - "chunk_z": 285, - "image": "xaero_tile_-80896_-37376.png" - }, - { - "x": -79872, - "z": -38400, - "chunk_x": 666, - "chunk_z": 284, - "image": "xaero_tile_-79872_-38400.png" - }, - { - "x": -79872, - "z": -37376, - "chunk_x": 666, - "chunk_z": 285, - "image": "xaero_tile_-79872_-37376.png" - }, - { - "x": -78848, - "z": -38400, - "chunk_x": 667, - "chunk_z": 284, - "image": "xaero_tile_-78848_-38400.png" - }, - { - "x": -78848, - "z": -37376, - "chunk_x": 667, - "chunk_z": 285, - "image": "xaero_tile_-78848_-37376.png" - }, - { - "x": -15360, - "z": 1536, - "chunk_x": 729, - "chunk_z": 323, - "image": "xaero_tile_-15360_1536.png" - }, - { - "x": -11264, - "z": -10752, - "chunk_x": 733, - "chunk_z": 311, - "image": "xaero_tile_-11264_-10752.png" - }, - { - "x": -11264, - "z": -7680, - "chunk_x": 733, - "chunk_z": 314, - "image": "xaero_tile_-11264_-7680.png" - }, - { - "x": -10240, - "z": -7680, - "chunk_x": 734, - "chunk_z": 314, - "image": "xaero_tile_-10240_-7680.png" - }, - { - "x": -10240, - "z": -512, - "chunk_x": 734, - "chunk_z": 321, - "image": "xaero_tile_-10240_-512.png" - }, - { - "x": -9216, - "z": -512, - "chunk_x": 735, - "chunk_z": 321, - "image": "xaero_tile_-9216_-512.png" - }, - { - "x": -8192, - "z": -512, - "chunk_x": 736, - "chunk_z": 321, - "image": "xaero_tile_-8192_-512.png" - }, - { - "x": -7168, - "z": -512, - "chunk_x": 737, - "chunk_z": 321, - "image": "xaero_tile_-7168_-512.png" - }, - { - "x": -6144, - "z": -3584, - "chunk_x": 738, - "chunk_z": 318, - "image": "xaero_tile_-6144_-3584.png" - }, - { - "x": -6144, - "z": -2560, - "chunk_x": 738, - "chunk_z": 319, - "image": "xaero_tile_-6144_-2560.png" - }, - { - "x": -6144, - "z": -512, - "chunk_x": 738, - "chunk_z": 321, - "image": "xaero_tile_-6144_-512.png" - }, - { - "x": -6144, - "z": 512, - "chunk_x": 738, - "chunk_z": 322, - "image": "xaero_tile_-6144_512.png" - }, - { - "x": -5120, - "z": -3584, - "chunk_x": 739, - "chunk_z": 318, - "image": "xaero_tile_-5120_-3584.png" - }, - { - "x": -5120, - "z": -2560, - "chunk_x": 739, - "chunk_z": 319, - "image": "xaero_tile_-5120_-2560.png" - }, - { - "x": -5120, - "z": -1536, - "chunk_x": 739, - "chunk_z": 320, - "image": "xaero_tile_-5120_-1536.png" - }, - { - "x": -5120, - "z": -512, - "chunk_x": 739, - "chunk_z": 321, - "image": "xaero_tile_-5120_-512.png" - }, - { - "x": -5120, - "z": 512, - "chunk_x": 739, - "chunk_z": 322, - "image": "xaero_tile_-5120_512.png" - }, - { - "x": -4096, - "z": -5632, - "chunk_x": 740, - "chunk_z": 316, - "image": "xaero_tile_-4096_-5632.png" - }, - { - "x": -4096, - "z": -4608, - "chunk_x": 740, - "chunk_z": 317, - "image": "xaero_tile_-4096_-4608.png" - }, - { - "x": -4096, - "z": -1536, - "chunk_x": 740, - "chunk_z": 320, - "image": "xaero_tile_-4096_-1536.png" - }, - { - "x": -4096, - "z": -512, - "chunk_x": 740, - "chunk_z": 321, - "image": "xaero_tile_-4096_-512.png" - }, - { - "x": -4096, - "z": 512, - "chunk_x": 740, - "chunk_z": 322, - "image": "xaero_tile_-4096_512.png" - }, - { - "x": -3072, - "z": -5632, - "chunk_x": 741, - "chunk_z": 316, - "image": "xaero_tile_-3072_-5632.png" - }, - { - "x": -3072, - "z": -4608, - "chunk_x": 741, - "chunk_z": 317, - "image": "xaero_tile_-3072_-4608.png" - }, - { - "x": -3072, - "z": -3584, - "chunk_x": 741, - "chunk_z": 318, - "image": "xaero_tile_-3072_-3584.png" - }, - { - "x": -3072, - "z": -2560, - "chunk_x": 741, - "chunk_z": 319, - "image": "xaero_tile_-3072_-2560.png" - }, - { - "x": -3072, - "z": -1536, - "chunk_x": 741, - "chunk_z": 320, - "image": "xaero_tile_-3072_-1536.png" - }, - { - "x": -3072, - "z": -512, - "chunk_x": 741, - "chunk_z": 321, - "image": "xaero_tile_-3072_-512.png" - }, - { - "x": -3072, - "z": 512, - "chunk_x": 741, - "chunk_z": 322, - "image": "xaero_tile_-3072_512.png" - }, - { - "x": -2048, - "z": -10752, - "chunk_x": 742, - "chunk_z": 311, - "image": "xaero_tile_-2048_-10752.png" - }, - { - "x": -2048, - "z": -9728, - "chunk_x": 742, - "chunk_z": 312, - "image": "xaero_tile_-2048_-9728.png" - }, - { - "x": -2048, - "z": -8704, - "chunk_x": 742, - "chunk_z": 313, - "image": "xaero_tile_-2048_-8704.png" - }, - { - "x": -2048, - "z": -7680, - "chunk_x": 742, - "chunk_z": 314, - "image": "xaero_tile_-2048_-7680.png" - }, - { - "x": -2048, - "z": -6656, - "chunk_x": 742, - "chunk_z": 315, - "image": "xaero_tile_-2048_-6656.png" - }, - { - "x": -2048, - "z": -5632, - "chunk_x": 742, - "chunk_z": 316, - "image": "xaero_tile_-2048_-5632.png" - }, - { - "x": -2048, - "z": -4608, - "chunk_x": 742, - "chunk_z": 317, - "image": "xaero_tile_-2048_-4608.png" - }, - { - "x": -2048, - "z": -3584, - "chunk_x": 742, - "chunk_z": 318, - "image": "xaero_tile_-2048_-3584.png" - }, - { - "x": -2048, - "z": -2560, - "chunk_x": 742, - "chunk_z": 319, - "image": "xaero_tile_-2048_-2560.png" - }, - { - "x": -2048, - "z": -1536, - "chunk_x": 742, - "chunk_z": 320, - "image": "xaero_tile_-2048_-1536.png" - }, - { - "x": -2048, - "z": -512, - "chunk_x": 742, - "chunk_z": 321, - "image": "xaero_tile_-2048_-512.png" - }, - { - "x": -2048, - "z": 512, - "chunk_x": 742, - "chunk_z": 322, - "image": "xaero_tile_-2048_512.png" - }, - { - "x": -2048, - "z": 1536, - "chunk_x": 742, - "chunk_z": 323, - "image": "xaero_tile_-2048_1536.png" - }, - { - "x": -1024, - "z": -10752, - "chunk_x": 743, - "chunk_z": 311, - "image": "xaero_tile_-1024_-10752.png" - }, - { - "x": -1024, - "z": -9728, - "chunk_x": 743, - "chunk_z": 312, - "image": "xaero_tile_-1024_-9728.png" - }, - { - "x": -1024, - "z": -8704, - "chunk_x": 743, - "chunk_z": 313, - "image": "xaero_tile_-1024_-8704.png" - }, - { - "x": -1024, - "z": -7680, - "chunk_x": 743, - "chunk_z": 314, - "image": "xaero_tile_-1024_-7680.png" - }, - { - "x": -1024, - "z": -6656, - "chunk_x": 743, - "chunk_z": 315, - "image": "xaero_tile_-1024_-6656.png" - }, - { - "x": -1024, - "z": -5632, - "chunk_x": 743, - "chunk_z": 316, - "image": "xaero_tile_-1024_-5632.png" - }, - { - "x": -1024, - "z": -4608, - "chunk_x": 743, - "chunk_z": 317, - "image": "xaero_tile_-1024_-4608.png" - }, - { - "x": -1024, - "z": -3584, - "chunk_x": 743, - "chunk_z": 318, - "image": "xaero_tile_-1024_-3584.png" - }, - { - "x": -1024, - "z": -2560, - "chunk_x": 743, - "chunk_z": 319, - "image": "xaero_tile_-1024_-2560.png" - }, - { - "x": -1024, - "z": -1536, - "chunk_x": 743, - "chunk_z": 320, - "image": "xaero_tile_-1024_-1536.png" - }, - { - "x": -1024, - "z": -512, - "chunk_x": 743, - "chunk_z": 321, - "image": "xaero_tile_-1024_-512.png" - }, - { - "x": -1024, - "z": 512, - "chunk_x": 743, - "chunk_z": 322, - "image": "xaero_tile_-1024_512.png" - }, - { - "x": -1024, - "z": 1536, - "chunk_x": 743, - "chunk_z": 323, - "image": "xaero_tile_-1024_1536.png" - }, - { - "x": -1024, - "z": 2560, - "chunk_x": 743, - "chunk_z": 324, - "image": "xaero_tile_-1024_2560.png" - }, - { - "x": 0, - "z": -10752, - "chunk_x": 744, - "chunk_z": 311, - "image": "xaero_tile_0_-10752.png" - }, - { - "x": 0, - "z": -9728, - "chunk_x": 744, - "chunk_z": 312, - "image": "xaero_tile_0_-9728.png" - }, - { - "x": 0, - "z": -8704, - "chunk_x": 744, - "chunk_z": 313, - "image": "xaero_tile_0_-8704.png" - }, - { - "x": 0, - "z": -7680, - "chunk_x": 744, - "chunk_z": 314, - "image": "xaero_tile_0_-7680.png" - }, - { - "x": 0, - "z": -6656, - "chunk_x": 744, - "chunk_z": 315, - "image": "xaero_tile_0_-6656.png" - }, - { - "x": 0, - "z": -5632, - "chunk_x": 744, - "chunk_z": 316, - "image": "xaero_tile_0_-5632.png" - }, - { - "x": 0, - "z": -4608, - "chunk_x": 744, - "chunk_z": 317, - "image": "xaero_tile_0_-4608.png" - }, - { - "x": 0, - "z": -3584, - "chunk_x": 744, - "chunk_z": 318, - "image": "xaero_tile_0_-3584.png" - }, - { - "x": 0, - "z": -2560, - "chunk_x": 744, - "chunk_z": 319, - "image": "xaero_tile_0_-2560.png" - }, - { - "x": 0, - "z": -1536, - "chunk_x": 744, - "chunk_z": 320, - "image": "xaero_tile_0_-1536.png" - }, - { - "x": 0, - "z": -512, - "chunk_x": 744, - "chunk_z": 321, - "image": "xaero_tile_0_-512.png" - }, - { - "x": 0, - "z": 512, - "chunk_x": 744, - "chunk_z": 322, - "image": "xaero_tile_0_512.png" - }, - { - "x": 0, - "z": 1536, - "chunk_x": 744, - "chunk_z": 323, - "image": "xaero_tile_0_1536.png" - }, - { - "x": 0, - "z": 2560, - "chunk_x": 744, - "chunk_z": 324, - "image": "xaero_tile_0_2560.png" - }, - { - "x": 1024, - "z": -10752, - "chunk_x": 745, - "chunk_z": 311, - "image": "xaero_tile_1024_-10752.png" - }, - { - "x": 1024, - "z": -9728, - "chunk_x": 745, - "chunk_z": 312, - "image": "xaero_tile_1024_-9728.png" - }, - { - "x": 1024, - "z": -8704, - "chunk_x": 745, - "chunk_z": 313, - "image": "xaero_tile_1024_-8704.png" - }, - { - "x": 1024, - "z": -7680, - "chunk_x": 745, - "chunk_z": 314, - "image": "xaero_tile_1024_-7680.png" - }, - { - "x": 1024, - "z": -6656, - "chunk_x": 745, - "chunk_z": 315, - "image": "xaero_tile_1024_-6656.png" - }, - { - "x": 1024, - "z": -5632, - "chunk_x": 745, - "chunk_z": 316, - "image": "xaero_tile_1024_-5632.png" - }, - { - "x": 1024, - "z": -4608, - "chunk_x": 745, - "chunk_z": 317, - "image": "xaero_tile_1024_-4608.png" - }, - { - "x": 1024, - "z": -3584, - "chunk_x": 745, - "chunk_z": 318, - "image": "xaero_tile_1024_-3584.png" - }, - { - "x": 1024, - "z": -2560, - "chunk_x": 745, - "chunk_z": 319, - "image": "xaero_tile_1024_-2560.png" - }, - { - "x": 1024, - "z": -1536, - "chunk_x": 745, - "chunk_z": 320, - "image": "xaero_tile_1024_-1536.png" - }, - { - "x": 1024, - "z": -512, - "chunk_x": 745, - "chunk_z": 321, - "image": "xaero_tile_1024_-512.png" - }, - { - "x": 1024, - "z": 512, - "chunk_x": 745, - "chunk_z": 322, - "image": "xaero_tile_1024_512.png" - }, - { - "x": 1024, - "z": 1536, - "chunk_x": 745, - "chunk_z": 323, - "image": "xaero_tile_1024_1536.png" - }, - { - "x": 1024, - "z": 2560, - "chunk_x": 745, - "chunk_z": 324, - "image": "xaero_tile_1024_2560.png" - }, - { - "x": 2048, - "z": -10752, - "chunk_x": 746, - "chunk_z": 311, - "image": "xaero_tile_2048_-10752.png" - }, - { - "x": 2048, - "z": -9728, - "chunk_x": 746, - "chunk_z": 312, - "image": "xaero_tile_2048_-9728.png" - }, - { - "x": 2048, - "z": -8704, - "chunk_x": 746, - "chunk_z": 313, - "image": "xaero_tile_2048_-8704.png" - }, - { - "x": 2048, - "z": -7680, - "chunk_x": 746, - "chunk_z": 314, - "image": "xaero_tile_2048_-7680.png" - }, - { - "x": 2048, - "z": -6656, - "chunk_x": 746, - "chunk_z": 315, - "image": "xaero_tile_2048_-6656.png" - }, - { - "x": 2048, - "z": -5632, - "chunk_x": 746, - "chunk_z": 316, - "image": "xaero_tile_2048_-5632.png" - }, - { - "x": 2048, - "z": -4608, - "chunk_x": 746, - "chunk_z": 317, - "image": "xaero_tile_2048_-4608.png" - }, - { - "x": 2048, - "z": -3584, - "chunk_x": 746, - "chunk_z": 318, - "image": "xaero_tile_2048_-3584.png" - }, - { - "x": 2048, - "z": -2560, - "chunk_x": 746, - "chunk_z": 319, - "image": "xaero_tile_2048_-2560.png" - }, - { - "x": 2048, - "z": -1536, - "chunk_x": 746, - "chunk_z": 320, - "image": "xaero_tile_2048_-1536.png" - }, - { - "x": 2048, - "z": -512, - "chunk_x": 746, - "chunk_z": 321, - "image": "xaero_tile_2048_-512.png" - }, - { - "x": 2048, - "z": 512, - "chunk_x": 746, - "chunk_z": 322, - "image": "xaero_tile_2048_512.png" - }, - { - "x": 2048, - "z": 1536, - "chunk_x": 746, - "chunk_z": 323, - "image": "xaero_tile_2048_1536.png" - }, - { - "x": 2048, - "z": 2560, - "chunk_x": 746, - "chunk_z": 324, - "image": "xaero_tile_2048_2560.png" - }, - { - "x": 3072, - "z": -1536, - "chunk_x": 747, - "chunk_z": 320, - "image": "xaero_tile_3072_-1536.png" - }, - { - "x": 3072, - "z": -512, - "chunk_x": 747, - "chunk_z": 321, - "image": "xaero_tile_3072_-512.png" - }, - { - "x": 3072, - "z": 512, - "chunk_x": 747, - "chunk_z": 322, - "image": "xaero_tile_3072_512.png" - }, - { - "x": 3072, - "z": 1536, - "chunk_x": 747, - "chunk_z": 323, - "image": "xaero_tile_3072_1536.png" - }, - { - "x": 4096, - "z": -1536, - "chunk_x": 748, - "chunk_z": 320, - "image": "xaero_tile_4096_-1536.png" - }, - { - "x": 4096, - "z": -512, - "chunk_x": 748, - "chunk_z": 321, - "image": "xaero_tile_4096_-512.png" - }, - { - "x": 4096, - "z": 512, - "chunk_x": 748, - "chunk_z": 322, - "image": "xaero_tile_4096_512.png" - }, - { - "x": 4096, - "z": 1536, - "chunk_x": 748, - "chunk_z": 323, - "image": "xaero_tile_4096_1536.png" - }, - { - "x": 4096, - "z": 3584, - "chunk_x": 748, - "chunk_z": 325, - "image": "xaero_tile_4096_3584.png" - }, - { - "x": 4096, - "z": 4608, - "chunk_x": 748, - "chunk_z": 326, - "image": "xaero_tile_4096_4608.png" - }, - { - "x": 4096, - "z": 5632, - "chunk_x": 748, - "chunk_z": 327, - "image": "xaero_tile_4096_5632.png" - }, - { - "x": 5120, - "z": -1536, - "chunk_x": 749, - "chunk_z": 320, - "image": "xaero_tile_5120_-1536.png" - }, - { - "x": 5120, - "z": -512, - "chunk_x": 749, - "chunk_z": 321, - "image": "xaero_tile_5120_-512.png" - }, - { - "x": 5120, - "z": 3584, - "chunk_x": 749, - "chunk_z": 325, - "image": "xaero_tile_5120_3584.png" - }, - { - "x": 5120, - "z": 4608, - "chunk_x": 749, - "chunk_z": 326, - "image": "xaero_tile_5120_4608.png" - }, - { - "x": 5120, - "z": 5632, - "chunk_x": 749, - "chunk_z": 327, - "image": "xaero_tile_5120_5632.png" - }, - { - "x": 6144, - "z": 5632, - "chunk_x": 750, - "chunk_z": 327, - "image": "xaero_tile_6144_5632.png" - }, - { - "x": 8192, - "z": -1536, - "chunk_x": 752, - "chunk_z": 320, - "image": "xaero_tile_8192_-1536.png" - }, - { - "x": 8192, - "z": -512, - "chunk_x": 752, - "chunk_z": 321, - "image": "xaero_tile_8192_-512.png" - }, - { - "x": 20480, - "z": -31232, - "chunk_x": 764, - "chunk_z": 291, - "image": "xaero_tile_20480_-31232.png" - }, - { - "x": 20480, - "z": -30208, - "chunk_x": 764, - "chunk_z": 292, - "image": "xaero_tile_20480_-30208.png" - }, - { - "x": 20480, - "z": 23040, - "chunk_x": 764, - "chunk_z": 344, - "image": "xaero_tile_20480_23040.png" - }, - { - "x": 21504, - "z": 23040, - "chunk_x": 765, - "chunk_z": 344, - "image": "xaero_tile_21504_23040.png" - }, - { - "x": 37888, - "z": 38400, - "chunk_x": 781, - "chunk_z": 359, - "image": "xaero_tile_37888_38400.png" - }, - { - "x": 37888, - "z": 39424, - "chunk_x": 781, - "chunk_z": 360, - "image": "xaero_tile_37888_39424.png" - }, - { - "x": 37888, - "z": 40448, - "chunk_x": 781, - "chunk_z": 361, - "image": "xaero_tile_37888_40448.png" - }, - { - "x": 37888, - "z": 41472, - "chunk_x": 781, - "chunk_z": 362, - "image": "xaero_tile_37888_41472.png" - }, - { - "x": 38912, - "z": 38400, - "chunk_x": 782, - "chunk_z": 359, - "image": "xaero_tile_38912_38400.png" - }, - { - "x": 38912, - "z": 39424, - "chunk_x": 782, - "chunk_z": 360, - "image": "xaero_tile_38912_39424.png" - }, - { - "x": 38912, - "z": 40448, - "chunk_x": 782, - "chunk_z": 361, - "image": "xaero_tile_38912_40448.png" - }, - { - "x": 38912, - "z": 41472, - "chunk_x": 782, - "chunk_z": 362, - "image": "xaero_tile_38912_41472.png" - }, - { - "x": 39936, - "z": 39424, - "chunk_x": 783, - "chunk_z": 360, - "image": "xaero_tile_39936_39424.png" - }, - { - "x": 39936, - "z": 40448, - "chunk_x": 783, - "chunk_z": 361, - "image": "xaero_tile_39936_40448.png" - }, - { - "x": 41984, - "z": 34304, - "chunk_x": 785, - "chunk_z": 355, - "image": "xaero_tile_41984_34304.png" - }, - { - "x": 41984, - "z": 35328, - "chunk_x": 785, - "chunk_z": 356, - "image": "xaero_tile_41984_35328.png" - }, - { - "x": 43008, - "z": 34304, - "chunk_x": 786, - "chunk_z": 355, - "image": "xaero_tile_43008_34304.png" - }, - { - "x": 43008, - "z": 35328, - "chunk_x": 786, - "chunk_z": 356, - "image": "xaero_tile_43008_35328.png" - }, - { - "x": 46080, - "z": 46592, - "chunk_x": 789, - "chunk_z": 367, - "image": "xaero_tile_46080_46592.png" - }, - { - "x": 46080, - "z": 47616, - "chunk_x": 789, - "chunk_z": 368, - "image": "xaero_tile_46080_47616.png" - }, - { - "x": 47104, - "z": 46592, - "chunk_x": 790, - "chunk_z": 367, - "image": "xaero_tile_47104_46592.png" - }, - { - "x": 47104, - "z": 47616, - "chunk_x": 790, - "chunk_z": 368, - "image": "xaero_tile_47104_47616.png" - }, - { - "x": 47104, - "z": 48640, - "chunk_x": 790, - "chunk_z": 369, - "image": "xaero_tile_47104_48640.png" - }, - { - "x": 48128, - "z": 47616, - "chunk_x": 791, - "chunk_z": 368, - "image": "xaero_tile_48128_47616.png" - }, - { - "x": 48128, - "z": 48640, - "chunk_x": 791, - "chunk_z": 369, - "image": "xaero_tile_48128_48640.png" - } -] \ No newline at end of file diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-10240_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-10240_-512.png deleted file mode 100644 index d9f6e84..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-10240_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-10240_-7680.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-10240_-7680.png deleted file mode 100644 index 9dc9576..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-10240_-7680.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-10752.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-10752.png deleted file mode 100644 index db6d804..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-10752.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-1536.png deleted file mode 100644 index 44a8f24..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-2560.png deleted file mode 100644 index 825a86f..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-3584.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-3584.png deleted file mode 100644 index 23ea942..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-3584.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-4608.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-4608.png deleted file mode 100644 index c91913c..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-4608.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-512.png deleted file mode 100644 index da1fda4..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-5632.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-5632.png deleted file mode 100644 index 9bddce7..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-5632.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-6656.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-6656.png deleted file mode 100644 index 59021d0..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-6656.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-7680.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-7680.png deleted file mode 100644 index 4fcd02c..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-7680.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-8704.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-8704.png deleted file mode 100644 index 72e8a31..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-8704.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-9728.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-9728.png deleted file mode 100644 index 0772684..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_-9728.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_1536.png deleted file mode 100644 index d5f9455..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_2560.png deleted file mode 100644 index 9eb290c..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_512.png deleted file mode 100644 index dc69d3d..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-1024_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-11264_-10752.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-11264_-10752.png deleted file mode 100644 index 0926f14..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-11264_-10752.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-11264_-7680.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-11264_-7680.png deleted file mode 100644 index a84651b..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-11264_-7680.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-152576_-119296.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-152576_-119296.png deleted file mode 100644 index e0f387e..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-152576_-119296.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-15360_1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-15360_1536.png deleted file mode 100644 index 7b60e1d..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-15360_1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-10752.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-10752.png deleted file mode 100644 index ebded21..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-10752.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-1536.png deleted file mode 100644 index 5ea7277..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-2560.png deleted file mode 100644 index bc23af3..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-3584.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-3584.png deleted file mode 100644 index eb67d9c..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-3584.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-4608.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-4608.png deleted file mode 100644 index e4a220a..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-4608.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-512.png deleted file mode 100644 index c0eae3e..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-5632.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-5632.png deleted file mode 100644 index f987941..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-5632.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-6656.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-6656.png deleted file mode 100644 index 9ab64ad..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-6656.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-7680.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-7680.png deleted file mode 100644 index 7517f67..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-7680.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-8704.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-8704.png deleted file mode 100644 index 4dc07a1..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-8704.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-9728.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-9728.png deleted file mode 100644 index d3d708f..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_-9728.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_1536.png deleted file mode 100644 index 9ab035b..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_512.png deleted file mode 100644 index 96d61e0..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-2048_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-1536.png deleted file mode 100644 index 2816455..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-2560.png deleted file mode 100644 index cbe0306..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-3584.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-3584.png deleted file mode 100644 index 1bda623..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-3584.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-4608.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-4608.png deleted file mode 100644 index 4bd1ba5..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-4608.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-512.png deleted file mode 100644 index e673668..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-5632.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-5632.png deleted file mode 100644 index 346b948..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_-5632.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_512.png deleted file mode 100644 index d22f8ea..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-3072_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_-1536.png deleted file mode 100644 index da55353..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_-4608.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_-4608.png deleted file mode 100644 index 04d6bc7..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_-4608.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_-512.png deleted file mode 100644 index c6b5aaf..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_-5632.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_-5632.png deleted file mode 100644 index 29624e2..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_-5632.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_512.png deleted file mode 100644 index d6b3a3b..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-4096_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_-1536.png deleted file mode 100644 index 3c2d55a..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_-2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_-2560.png deleted file mode 100644 index 9514341..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_-2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_-3584.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_-3584.png deleted file mode 100644 index fc2ac98..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_-3584.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_-512.png deleted file mode 100644 index 6b8ed46..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_512.png deleted file mode 100644 index 673d797..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-5120_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-6144_-2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-6144_-2560.png deleted file mode 100644 index c1f71a2..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-6144_-2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-6144_-3584.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-6144_-3584.png deleted file mode 100644 index e2fab0e..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-6144_-3584.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-6144_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-6144_-512.png deleted file mode 100644 index 13f4b8d..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-6144_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-6144_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-6144_512.png deleted file mode 100644 index 83fac4a..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-6144_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-7168_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-7168_-512.png deleted file mode 100644 index 06aa3e8..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-7168_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-761856_-329216.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-761856_-329216.png deleted file mode 100644 index 8eaefd7..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-761856_-329216.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-78848_-37376.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-78848_-37376.png deleted file mode 100644 index 0987a1a..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-78848_-37376.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-78848_-38400.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-78848_-38400.png deleted file mode 100644 index 7c10cc1..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-78848_-38400.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-79872_-37376.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-79872_-37376.png deleted file mode 100644 index 6e74cc8..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-79872_-37376.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-79872_-38400.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-79872_-38400.png deleted file mode 100644 index 329fc0c..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-79872_-38400.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-80896_-37376.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-80896_-37376.png deleted file mode 100644 index 0e2f37b..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-80896_-37376.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-81920_-38400.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-81920_-38400.png deleted file mode 100644 index a791ed5..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-81920_-38400.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-8192_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-8192_-512.png deleted file mode 100644 index 6b8074a..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-8192_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-82944_-38400.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-82944_-38400.png deleted file mode 100644 index 908924e..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-82944_-38400.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-9216_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-9216_-512.png deleted file mode 100644 index 2b59661..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_-9216_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-10752.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-10752.png deleted file mode 100644 index 70bdd18..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-10752.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-1536.png deleted file mode 100644 index 0c1cb96..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-2560.png deleted file mode 100644 index 380a570..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-3584.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-3584.png deleted file mode 100644 index 2b32236..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-3584.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-4608.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-4608.png deleted file mode 100644 index 8264204..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-4608.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-512.png deleted file mode 100644 index 62b9dc9..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-5632.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-5632.png deleted file mode 100644 index 2c36c15..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-5632.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-6656.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-6656.png deleted file mode 100644 index 4dc9479..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-6656.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-7680.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-7680.png deleted file mode 100644 index d339a28..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-7680.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-8704.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-8704.png deleted file mode 100644 index 2594b04..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-8704.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-9728.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-9728.png deleted file mode 100644 index b27fda1..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_-9728.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_1536.png deleted file mode 100644 index cfb8ab5..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_2560.png deleted file mode 100644 index 570ecfa..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_512.png deleted file mode 100644 index b14a157..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_0_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-10752.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-10752.png deleted file mode 100644 index fb1347d..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-10752.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-1536.png deleted file mode 100644 index 1c60c6e..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-2560.png deleted file mode 100644 index f3f4800..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-3584.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-3584.png deleted file mode 100644 index 7eefd59..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-3584.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-4608.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-4608.png deleted file mode 100644 index aa9d36b..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-4608.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-512.png deleted file mode 100644 index 6229217..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-5632.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-5632.png deleted file mode 100644 index ebc2c8d..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-5632.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-6656.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-6656.png deleted file mode 100644 index 5bdbac8..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-6656.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-7680.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-7680.png deleted file mode 100644 index ecabf7e..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-7680.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-8704.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-8704.png deleted file mode 100644 index 7d7d13a..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-8704.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-9728.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-9728.png deleted file mode 100644 index eb1602c..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_-9728.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_1536.png deleted file mode 100644 index bac44ce..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_2560.png deleted file mode 100644 index e89f50e..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_512.png deleted file mode 100644 index 2b62bb4..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_1024_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_20480_-30208.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_20480_-30208.png deleted file mode 100644 index 7aed7c6..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_20480_-30208.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_20480_-31232.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_20480_-31232.png deleted file mode 100644 index e2fed3f..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_20480_-31232.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_20480_23040.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_20480_23040.png deleted file mode 100644 index c67873a..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_20480_23040.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-10752.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-10752.png deleted file mode 100644 index 6e53328..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-10752.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-1536.png deleted file mode 100644 index 8e54b80..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-2560.png deleted file mode 100644 index 1acd3d4..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-3584.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-3584.png deleted file mode 100644 index 9271686..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-3584.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-4608.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-4608.png deleted file mode 100644 index 7937f11..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-4608.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-512.png deleted file mode 100644 index 7749cff..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-5632.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-5632.png deleted file mode 100644 index 7d15a66..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-5632.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-6656.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-6656.png deleted file mode 100644 index 27f40a6..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-6656.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-7680.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-7680.png deleted file mode 100644 index aad5668..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-7680.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-8704.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-8704.png deleted file mode 100644 index 49592f8..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-8704.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-9728.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-9728.png deleted file mode 100644 index a981b9f..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_-9728.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_1536.png deleted file mode 100644 index 6a92ea0..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_2560.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_2560.png deleted file mode 100644 index 351e1d9..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_2560.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_512.png deleted file mode 100644 index fd1a2ae..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_2048_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_21504_23040.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_21504_23040.png deleted file mode 100644 index a920943..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_21504_23040.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_3072_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_3072_-1536.png deleted file mode 100644 index 4417514..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_3072_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_3072_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_3072_-512.png deleted file mode 100644 index dfb01d9..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_3072_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_3072_1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_3072_1536.png deleted file mode 100644 index 5988853..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_3072_1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_3072_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_3072_512.png deleted file mode 100644 index 7f9c900..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_3072_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_37888_38400.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_37888_38400.png deleted file mode 100644 index 0f39a74..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_37888_38400.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_37888_39424.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_37888_39424.png deleted file mode 100644 index 928c84f..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_37888_39424.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_37888_40448.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_37888_40448.png deleted file mode 100644 index eade993..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_37888_40448.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_37888_41472.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_37888_41472.png deleted file mode 100644 index 32e076f..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_37888_41472.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_38912_38400.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_38912_38400.png deleted file mode 100644 index 3486873..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_38912_38400.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_38912_39424.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_38912_39424.png deleted file mode 100644 index fc76bff..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_38912_39424.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_38912_40448.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_38912_40448.png deleted file mode 100644 index 36ff23e..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_38912_40448.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_38912_41472.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_38912_41472.png deleted file mode 100644 index f0476b0..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_38912_41472.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_39936_39424.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_39936_39424.png deleted file mode 100644 index 50497c2..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_39936_39424.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_39936_40448.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_39936_40448.png deleted file mode 100644 index 8ec7d78..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_39936_40448.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_-1536.png deleted file mode 100644 index b16521b..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_-512.png deleted file mode 100644 index 49456ba..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_1536.png deleted file mode 100644 index 8cad87e..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_3584.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_3584.png deleted file mode 100644 index e880e92..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_3584.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_4608.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_4608.png deleted file mode 100644 index 6078177..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_4608.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_512.png deleted file mode 100644 index 07792e9..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_5632.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_5632.png deleted file mode 100644 index 4cf9434..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_4096_5632.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_41984_34304.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_41984_34304.png deleted file mode 100644 index c5f7723..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_41984_34304.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_41984_35328.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_41984_35328.png deleted file mode 100644 index 5be706c..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_41984_35328.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_43008_34304.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_43008_34304.png deleted file mode 100644 index 8513798..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_43008_34304.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_43008_35328.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_43008_35328.png deleted file mode 100644 index 39ec0b8..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_43008_35328.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_46080_46592.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_46080_46592.png deleted file mode 100644 index 5ca2f63..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_46080_46592.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_46080_47616.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_46080_47616.png deleted file mode 100644 index 51272c0..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_46080_47616.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_47104_46592.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_47104_46592.png deleted file mode 100644 index 76f2662..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_47104_46592.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_47104_47616.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_47104_47616.png deleted file mode 100644 index 4436bdd..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_47104_47616.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_47104_48640.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_47104_48640.png deleted file mode 100644 index 67f35ce..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_47104_48640.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_48128_47616.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_48128_47616.png deleted file mode 100644 index a6247cf..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_48128_47616.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_48128_48640.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_48128_48640.png deleted file mode 100644 index 637f429..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_48128_48640.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_-1536.png deleted file mode 100644 index baf48d4..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_-512.png deleted file mode 100644 index 09e0c02..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_3584.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_3584.png deleted file mode 100644 index cb35725..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_3584.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_4608.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_4608.png deleted file mode 100644 index 61791d3..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_4608.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_5632.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_5632.png deleted file mode 100644 index 715fdec..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_5120_5632.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_6144_5632.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_6144_5632.png deleted file mode 100644 index a97d451..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_6144_5632.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_8192_-1536.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_8192_-1536.png deleted file mode 100644 index 01d3527..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_8192_-1536.png and /dev/null differ diff --git a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_8192_-512.png b/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_8192_-512.png deleted file mode 100644 index 63d53a4..0000000 Binary files a/static/map-data/minecraft/mc-sdf-org/tiles/surface/xaero_tile_8192_-512.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/generate_tile_list.py b/static/map-data/minecraft/nwnd-2024-world1/generate_tile_list.py deleted file mode 100644 index 2c6da94..0000000 --- a/static/map-data/minecraft/nwnd-2024-world1/generate_tile_list.py +++ /dev/null @@ -1,27 +0,0 @@ -import re -import json -from pathlib import Path - -TILES_DIR = Path(__file__).parent / "tiles" -tiles = list(TILES_DIR.glob("*.png")) - -TILE_PARTS_RE = re.compile(r"([\d\-]+)_([\d\-]+)_x([\d\-]+)_z([\d\-]+).png") - -for tile in tiles: - tile_name = tile.name - match = TILE_PARTS_RE.match(tile_name) - - if match: - chunk_x, chunk_z, x, z = match.groups() - - print( - json.dumps( - { - "chunk_x": int(chunk_x), - "chunk_z": int(chunk_z), - "x": int(x), - "z": int(z), - "image": tile_name - } - ) + "," - ) \ No newline at end of file diff --git a/static/map-data/minecraft/nwnd-2024-world1/map.js b/static/map-data/minecraft/nwnd-2024-world1/map.js deleted file mode 100644 index 20dbcb2..0000000 --- a/static/map-data/minecraft/nwnd-2024-world1/map.js +++ /dev/null @@ -1,57 +0,0 @@ - -const TILE_SIZE = 1024; -const TILES = [ - { "chunk_x": 0, "chunk_z": 1, "x": -1024, "z": -4096, "image": "0_1_x-1024_z-4096.png" }, - { "chunk_x": 0, "chunk_z": 2, "x": -1024, "z": -3072, "image": "0_2_x-1024_z-3072.png" }, - { "chunk_x": 0, "chunk_z": 3, "x": -1024, "z": -2048, "image": "0_3_x-1024_z-2048.png" }, - { "chunk_x": 0, "chunk_z": 4, "x": -1024, "z": -1024, "image": "0_4_x-1024_z-1024.png" }, - { "chunk_x": 0, "chunk_z": 5, "x": -1024, "z": 0, "image": "0_5_x-1024_z0.png" }, - { "chunk_x": 1, "chunk_z": 0, "x": 0, "z": -5120, "image": "1_0_x0_z-5120.png" }, - { "chunk_x": 1, "chunk_z": 1, "x": 0, "z": -4096, "image": "1_1_x0_z-4096.png" }, - { "chunk_x": 1, "chunk_z": 2, "x": 0, "z": -3072, "image": "1_2_x0_z-3072.png" }, - { "chunk_x": 1, "chunk_z": 3, "x": 0, "z": -2048, "image": "1_3_x0_z-2048.png" }, - { "chunk_x": 1, "chunk_z": 4, "x": 0, "z": -1024, "image": "1_4_x0_z-1024.png" }, - { "chunk_x": 1, "chunk_z": 5, "x": 0, "z": 0, "image": "1_5_x0_z0.png" }, - { "chunk_x": 1, "chunk_z": 6, "x": 0, "z": 1024, "image": "1_6_x0_z1024.png" }, - { "chunk_x": 2, "chunk_z": 0, "x": 1024, "z": -5120, "image": "2_0_x1024_z-5120.png" }, - { "chunk_x": 2, "chunk_z": 1, "x": 1024, "z": -4096, "image": "2_1_x1024_z-4096.png" }, - { "chunk_x": 2, "chunk_z": 2, "x": 1024, "z": -3072, "image": "2_2_x1024_z-3072.png" }, - { "chunk_x": 2, "chunk_z": 3, "x": 1024, "z": -2048, "image": "2_3_x1024_z-2048.png" }, - { "chunk_x": 2, "chunk_z": 4, "x": 1024, "z": -1024, "image": "2_4_x1024_z-1024.png" }, - { "chunk_x": 2, "chunk_z": 5, "x": 1024, "z": 0, "image": "2_5_x1024_z0.png" }, - { "chunk_x": 2, "chunk_z": 6, "x": 1024, "z": 1024, "image": "2_6_x1024_z1024.png" }, - { "chunk_x": 3, "chunk_z": 2, "x": 2048, "z": -3072, "image": "3_2_x2048_z-3072.png" }, - { "chunk_x": 3, "chunk_z": 3, "x": 2048, "z": -2048, "image": "3_3_x2048_z-2048.png" }, - { "chunk_x": 3, "chunk_z": 4, "x": 2048, "z": -1024, "image": "3_4_x2048_z-1024.png" }, - { "chunk_x": 3, "chunk_z": 5, "x": 2048, "z": 0, "image": "3_5_x2048_z0.png" }, - { "chunk_x": 4, "chunk_z": 4, "x": 3072, "z": -1024, "image": "4_4_x3072_z-1024.png" } -] - -// Set up the map -var map = L.map('map', { - crs: L.CRS.Simple, - minZoom: -3, - maxZoom: 3, - backgroundColor: '#000000', -}); - -// Add each tile to the map -TILES.forEach(tile => { - var bounds = [[tile.z * -1, tile.x], [(tile.z + TILE_SIZE) * -1, tile.x + TILE_SIZE]]; - var image = L.imageOverlay(`/map-data/minecraft/nwnd-2024-world1/tiles/${tile.image}`, bounds).addTo(map); -}); - -map.fitBounds([ - [512,1024], - [1500, 1024] -]); - -// Add a CSS rule to pixelate the image only when zoomed in -map.on('zoomend', function (e) { - if (map.getZoom() >= 2) { - if (document.querySelector('#leaflet-pixelator')) return; - document.head.insertAdjacentHTML('beforeend', ''); - } else { - document.querySelector('#leaflet-pixelator').remove(); - } -}); \ No newline at end of file diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/0_1_x-1024_z-4096.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/0_1_x-1024_z-4096.png deleted file mode 100644 index 88de645..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/0_1_x-1024_z-4096.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/0_2_x-1024_z-3072.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/0_2_x-1024_z-3072.png deleted file mode 100644 index a38cbe9..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/0_2_x-1024_z-3072.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/0_3_x-1024_z-2048.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/0_3_x-1024_z-2048.png deleted file mode 100644 index 90fe759..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/0_3_x-1024_z-2048.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/0_4_x-1024_z-1024.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/0_4_x-1024_z-1024.png deleted file mode 100644 index adb28e9..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/0_4_x-1024_z-1024.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/0_5_x-1024_z0.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/0_5_x-1024_z0.png deleted file mode 100644 index 95058ec..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/0_5_x-1024_z0.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_0_x0_z-5120.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/1_0_x0_z-5120.png deleted file mode 100644 index aa48bcb..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_0_x0_z-5120.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_1_x0_z-4096.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/1_1_x0_z-4096.png deleted file mode 100644 index 2f46d8d..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_1_x0_z-4096.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_2_x0_z-3072.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/1_2_x0_z-3072.png deleted file mode 100644 index 09c6207..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_2_x0_z-3072.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_3_x0_z-2048.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/1_3_x0_z-2048.png deleted file mode 100644 index 859e195..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_3_x0_z-2048.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_4_x0_z-1024.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/1_4_x0_z-1024.png deleted file mode 100644 index 771eabb..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_4_x0_z-1024.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_5_x0_z0.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/1_5_x0_z0.png deleted file mode 100644 index cb2ef90..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_5_x0_z0.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_6_x0_z1024.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/1_6_x0_z1024.png deleted file mode 100644 index bb886d0..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/1_6_x0_z1024.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_0_x1024_z-5120.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/2_0_x1024_z-5120.png deleted file mode 100644 index 3e16f89..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_0_x1024_z-5120.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_1_x1024_z-4096.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/2_1_x1024_z-4096.png deleted file mode 100644 index 881fbde..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_1_x1024_z-4096.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_2_x1024_z-3072.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/2_2_x1024_z-3072.png deleted file mode 100644 index 492a7ec..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_2_x1024_z-3072.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_3_x1024_z-2048.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/2_3_x1024_z-2048.png deleted file mode 100644 index 662600a..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_3_x1024_z-2048.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_4_x1024_z-1024.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/2_4_x1024_z-1024.png deleted file mode 100644 index 430dded..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_4_x1024_z-1024.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_5_x1024_z0.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/2_5_x1024_z0.png deleted file mode 100644 index e6e55d2..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_5_x1024_z0.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_6_x1024_z1024.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/2_6_x1024_z1024.png deleted file mode 100644 index 1f3000d..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/2_6_x1024_z1024.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/3_2_x2048_z-3072.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/3_2_x2048_z-3072.png deleted file mode 100644 index dffd25a..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/3_2_x2048_z-3072.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/3_3_x2048_z-2048.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/3_3_x2048_z-2048.png deleted file mode 100644 index b871241..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/3_3_x2048_z-2048.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/3_4_x2048_z-1024.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/3_4_x2048_z-1024.png deleted file mode 100644 index 69ea7b9..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/3_4_x2048_z-1024.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/3_5_x2048_z0.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/3_5_x2048_z0.png deleted file mode 100644 index 8f2091b..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/3_5_x2048_z0.png and /dev/null differ diff --git a/static/map-data/minecraft/nwnd-2024-world1/tiles/4_4_x3072_z-1024.png b/static/map-data/minecraft/nwnd-2024-world1/tiles/4_4_x3072_z-1024.png deleted file mode 100644 index bebfdde..0000000 Binary files a/static/map-data/minecraft/nwnd-2024-world1/tiles/4_4_x3072_z-1024.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/generate_tile_list.py b/static/map-data/minecraft/rsninja-2020/generate_tile_list.py deleted file mode 100644 index 2c6da94..0000000 --- a/static/map-data/minecraft/rsninja-2020/generate_tile_list.py +++ /dev/null @@ -1,27 +0,0 @@ -import re -import json -from pathlib import Path - -TILES_DIR = Path(__file__).parent / "tiles" -tiles = list(TILES_DIR.glob("*.png")) - -TILE_PARTS_RE = re.compile(r"([\d\-]+)_([\d\-]+)_x([\d\-]+)_z([\d\-]+).png") - -for tile in tiles: - tile_name = tile.name - match = TILE_PARTS_RE.match(tile_name) - - if match: - chunk_x, chunk_z, x, z = match.groups() - - print( - json.dumps( - { - "chunk_x": int(chunk_x), - "chunk_z": int(chunk_z), - "x": int(x), - "z": int(z), - "image": tile_name - } - ) + "," - ) \ No newline at end of file diff --git a/static/map-data/minecraft/rsninja-2020/map.js b/static/map-data/minecraft/rsninja-2020/map.js deleted file mode 100644 index 4d62137..0000000 --- a/static/map-data/minecraft/rsninja-2020/map.js +++ /dev/null @@ -1,162 +0,0 @@ - -const TILE_SIZE = 1024; -const TILES = [ - { "chunk_x": 0, "chunk_z": 965, "x": -14848, "z": -21504, "image": "0_965_x-14848_z-21504.png" }, - { "chunk_x": 0, "chunk_z": 966, "x": -14848, "z": -20480, "image": "0_966_x-14848_z-20480.png" }, - { "chunk_x": 5, "chunk_z": 992, "x": -9728, "z": 6144, "image": "5_992_x-9728_z6144.png" }, - { "chunk_x": 12, "chunk_z": 985, "x": -2560, "z": -1024, "image": "12_985_x-2560_z-1024.png" }, - { "chunk_x": 12, "chunk_z": 986, "x": -2560, "z": 0, "image": "12_986_x-2560_z0.png" }, - { "chunk_x": 13, "chunk_z": 982, "x": -1536, "z": -4096, "image": "13_982_x-1536_z-4096.png" }, - { "chunk_x": 13, "chunk_z": 983, "x": -1536, "z": -3072, "image": "13_983_x-1536_z-3072.png" }, - { "chunk_x": 13, "chunk_z": 984, "x": -1536, "z": -2048, "image": "13_984_x-1536_z-2048.png" }, - { "chunk_x": 13, "chunk_z": 985, "x": -1536, "z": -1024, "image": "13_985_x-1536_z-1024.png" }, - { "chunk_x": 13, "chunk_z": 986, "x": -1536, "z": 0, "image": "13_986_x-1536_z0.png" }, - { "chunk_x": 13, "chunk_z": 987, "x": -1536, "z": 1024, "image": "13_987_x-1536_z1024.png" }, - { "chunk_x": 13, "chunk_z": 988, "x": -1536, "z": 2048, "image": "13_988_x-1536_z2048.png" }, - { "chunk_x": 13, "chunk_z": 990, "x": -1536, "z": 4096, "image": "13_990_x-1536_z4096.png" }, - { "chunk_x": 14, "chunk_z": 982, "x": -512, "z": -4096, "image": "14_982_x-512_z-4096.png" }, - { "chunk_x": 14, "chunk_z": 983, "x": -512, "z": -3072, "image": "14_983_x-512_z-3072.png" }, - { "chunk_x": 14, "chunk_z": 984, "x": -512, "z": -2048, "image": "14_984_x-512_z-2048.png" }, - { "chunk_x": 14, "chunk_z": 985, "x": -512, "z": -1024, "image": "14_985_x-512_z-1024.png" }, - { "chunk_x": 14, "chunk_z": 986, "x": -512, "z": 0, "image": "14_986_x-512_z0.png" }, - { "chunk_x": 14, "chunk_z": 987, "x": -512, "z": 1024, "image": "14_987_x-512_z1024.png" }, - { "chunk_x": 14, "chunk_z": 988, "x": -512, "z": 2048, "image": "14_988_x-512_z2048.png" }, - { "chunk_x": 14, "chunk_z": 990, "x": -512, "z": 4096, "image": "14_990_x-512_z4096.png" }, - { "chunk_x": 15, "chunk_z": 985, "x": 512, "z": -1024, "image": "15_985_x512_z-1024.png" }, - { "chunk_x": 15, "chunk_z": 986, "x": 512, "z": 0, "image": "15_986_x512_z0.png" }, - { "chunk_x": 15, "chunk_z": 988, "x": 512, "z": 2048, "image": "15_988_x512_z2048.png" }, - { "chunk_x": 17, "chunk_z": 983, "x": 2560, "z": -3072, "image": "17_983_x2560_z-3072.png" }, - { "chunk_x": 23, "chunk_z": 991, "x": 8704, "z": 5120, "image": "23_991_x8704_z5120.png" }, - { "chunk_x": 24, "chunk_z": 991, "x": 9728, "z": 5120, "image": "24_991_x9728_z5120.png" }, - { "chunk_x": 24, "chunk_z": 992, "x": 9728, "z": 6144, "image": "24_992_x9728_z6144.png" }, - { "chunk_x": 24, "chunk_z": 993, "x": 9728, "z": 7168, "image": "24_993_x9728_z7168.png" }, - { "chunk_x": 25, "chunk_z": 993, "x": 10752, "z": 7168, "image": "25_993_x10752_z7168.png" }, - { "chunk_x": 28, "chunk_z": 986, "x": 13824, "z": 0, "image": "28_986_x13824_z0.png" } -] -const WAYPOINTS = { - places: [ - { x: -200, z: 160, name: "Spawn", icon: "world.png" }, - { x: 687, z: 2547, name: "End Portal Base", icon: "house.png" }, - { x: -994, z: -1305, name: "Carter's Base", icon: "house.png" }, - { x: -327, z: 1801, name: "Percy's Base", icon: "house.png" }, - { x: -450, z: 4368, name: "Cat's Snowy Base", icon: "house.png" }, - { x: -1439, z: -59, name: "Sally's Base", icon: "house.png" }, - { x: 1662, z: 384, name: "CommonOctopus", icon: "house.png" }, - { x: -38, z: 1656, name: "Totem Farm" }, - { x: -483, z: 338, name: "Will's Base", icon: "house.png" }, - { x: 3298, z: -2820, name: "Tyson's Base", icon: "house.png" }, - { x: -1748, z: 320, name: "Sydney's Base", icon: "house.png" }, - { x: -1448, z: -830, name: "Ethan's Base", icon: "house.png" }, - { x: 162, z: -125, name: "Ian's Base", icon: "house.png" }, - { x: -278, z: -290, name: "Cat's Base", icon: "house.png" }, - { x: 97, z: -2280, name: "Trident Farm" }, - { x: -1304, z: -7, name: "Evan's Mountain Base", icon: "house.png" }, - { x: -435, z: -851, name: "Jake's Base", icon: "house.png" }, - { x: -501, z: -514, name: "James' Base", icon: "house.png" }, - { x: -1712, z: -622, name: "End Portal" }, - { x: -170, z: 1038, name: "Evan's Base", icon: "house.png" }, - { x: -350, z: 250, name: "Matt's Base", icon: "house.png" }, - ], - subway_lines: [ - { start: { x: -170, z: 1038 }, end: { x: -170, z: 160 } }, - { start: { x: -483, z: 338 }, end: { x: -170, z: 338 } }, - { start: { x: -483, z: 338 }, end: { x: -483, z: 60 } }, - { start: { x: -483, z: 60 }, end: { x: -501, z: 60 } }, - { start: { x: -501, z: 60 }, end: { x: -501, z: -851 } }, - { start: { x: -501, z: -851 }, end: { x: -250, z: -851 } }, - { start: { x: -278, z: -287 }, end: { x: -1712, z: -287 } }, - { start: { x: -1712, z: -287 }, end: { x: -1712, z: -622 } }, - ] -} - -// Set up the map -var map = L.map('map', { - crs: L.CRS.Simple, - minZoom: -3, - maxZoom: 3, - backgroundColor: '#000000', -}); - -// Create two empty layers -var base_layer = L.layerGroup(); -var chunked_layer = L.layerGroup(); - -// Add each tile to the map -TILES.forEach(tile => { - var bounds = [[tile.z * -1, tile.x], [(tile.z + TILE_SIZE) * -1, tile.x + TILE_SIZE]]; - var image = L.imageOverlay(`/map-data/minecraft/rsninja-2020/tiles/${tile.image}`, bounds).addTo(chunked_layer); -}); - -// Add the old export to the base layer -var base_offset = [-4887, -2651]; -var bounds = [[0 + base_offset[0], 0 + base_offset[1]], [8983 + base_offset[0], 6205 + base_offset[1]]]; -var image = L.imageOverlay(`/map-data/minecraft/rsninja-2020/world.png`, bounds).addTo(base_layer); - -map.fitBounds(bounds); - -// Add the layers to the map -base_layer.addTo(map); -chunked_layer.addTo(map); - -// Create waypoint groups -var places = L.layerGroup().addTo(map); -var subway_lines = L.layerGroup(); - -// Add each waypoint to the map -WAYPOINTS.places.forEach(place => { - if (place.icon) { - var icon = L.icon({ iconUrl: `/map-data/icons/${place.icon}`, iconSize: [16, 16] }); - var marker = L.marker([place.z * -1, place.x], { icon: icon }).addTo(places); - } - else { - var marker = L.marker([place.z * -1, place.x]).addTo(places); - } - marker.bindPopup(place.name); -}); - -// Add each subway line to the map -WAYPOINTS.subway_lines.forEach(line => { - var polyline = L.polyline([ - [line.start.z * -1, line.start.x], - [line.end.z * -1, line.end.x] - ], { color: '#ff0000aa' }).addTo(subway_lines); -}); - -// Add a control to toggle the layers (allow both to be on at the same time) -L.control.layers({}, { - "Evan's Export": base_layer, - "James' Export": chunked_layer, - "Places": places, - "Subway Lines": subway_lines -}).addTo(map); - -// Add a CSS rule to pixelate the image only when zoomed in -map.on('zoomend', function (e) { - if (map.getZoom() >= 2) { - if (document.querySelector('#leaflet-pixelator')) return; - document.head.insertAdjacentHTML('beforeend', ''); - } else { - document.querySelector('#leaflet-pixelator').remove(); - } -}); - -// Create a mouse position display -var mousePosition = L.control({ position: 'bottomleft' }); -mousePosition.onAdd = function (map) { - this._div = L.DomUtil.create('div', 'mouse-position'); - this._div.style.padding = '5px'; - this._div.style.backgroundColor = 'rgba(255, 255, 255, 0.5)'; - this._div.style.border = '1px solid #000000'; - this._div.style.borderRadius = '5px'; - this._div.style.display = 'none'; - return this._div; -}; -mousePosition.addTo(map); - -// Update the mouse position display -map.on('mousemove', function (e) { - var x = Math.floor(e.latlng.lng); - var z = Math.floor(e.latlng.lat * -1); - mousePosition._div.innerHTML = `X: ${x}, Z: ${z}`; - mousePosition._div.style.display = ''; -}); diff --git a/static/map-data/minecraft/rsninja-2020/tiles/0_965_x-14848_z-21504.png b/static/map-data/minecraft/rsninja-2020/tiles/0_965_x-14848_z-21504.png deleted file mode 100644 index 43fe3e7..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/0_965_x-14848_z-21504.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/0_966_x-14848_z-20480.png b/static/map-data/minecraft/rsninja-2020/tiles/0_966_x-14848_z-20480.png deleted file mode 100644 index 3ea5f1f..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/0_966_x-14848_z-20480.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/12_985_x-2560_z-1024.png b/static/map-data/minecraft/rsninja-2020/tiles/12_985_x-2560_z-1024.png deleted file mode 100644 index 768b671..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/12_985_x-2560_z-1024.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/12_986_x-2560_z0.png b/static/map-data/minecraft/rsninja-2020/tiles/12_986_x-2560_z0.png deleted file mode 100644 index 7119323..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/12_986_x-2560_z0.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/13_982_x-1536_z-4096.png b/static/map-data/minecraft/rsninja-2020/tiles/13_982_x-1536_z-4096.png deleted file mode 100644 index e6ccb8b..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/13_982_x-1536_z-4096.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/13_983_x-1536_z-3072.png b/static/map-data/minecraft/rsninja-2020/tiles/13_983_x-1536_z-3072.png deleted file mode 100644 index d243e33..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/13_983_x-1536_z-3072.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/13_984_x-1536_z-2048.png b/static/map-data/minecraft/rsninja-2020/tiles/13_984_x-1536_z-2048.png deleted file mode 100644 index cdc432c..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/13_984_x-1536_z-2048.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/13_985_x-1536_z-1024.png b/static/map-data/minecraft/rsninja-2020/tiles/13_985_x-1536_z-1024.png deleted file mode 100644 index 7c07c39..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/13_985_x-1536_z-1024.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/13_986_x-1536_z0.png b/static/map-data/minecraft/rsninja-2020/tiles/13_986_x-1536_z0.png deleted file mode 100644 index 4ca5abd..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/13_986_x-1536_z0.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/13_987_x-1536_z1024.png b/static/map-data/minecraft/rsninja-2020/tiles/13_987_x-1536_z1024.png deleted file mode 100644 index a382cf3..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/13_987_x-1536_z1024.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/13_988_x-1536_z2048.png b/static/map-data/minecraft/rsninja-2020/tiles/13_988_x-1536_z2048.png deleted file mode 100644 index 314ac49..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/13_988_x-1536_z2048.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/13_990_x-1536_z4096.png b/static/map-data/minecraft/rsninja-2020/tiles/13_990_x-1536_z4096.png deleted file mode 100644 index 06a49c0..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/13_990_x-1536_z4096.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/14_982_x-512_z-4096.png b/static/map-data/minecraft/rsninja-2020/tiles/14_982_x-512_z-4096.png deleted file mode 100644 index f40646f..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/14_982_x-512_z-4096.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/14_983_x-512_z-3072.png b/static/map-data/minecraft/rsninja-2020/tiles/14_983_x-512_z-3072.png deleted file mode 100644 index a777e98..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/14_983_x-512_z-3072.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/14_984_x-512_z-2048.png b/static/map-data/minecraft/rsninja-2020/tiles/14_984_x-512_z-2048.png deleted file mode 100644 index 1f391dc..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/14_984_x-512_z-2048.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/14_985_x-512_z-1024.png b/static/map-data/minecraft/rsninja-2020/tiles/14_985_x-512_z-1024.png deleted file mode 100644 index 7c68fcc..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/14_985_x-512_z-1024.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/14_986_x-512_z0.png b/static/map-data/minecraft/rsninja-2020/tiles/14_986_x-512_z0.png deleted file mode 100644 index 4c29a3e..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/14_986_x-512_z0.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/14_987_x-512_z1024.png b/static/map-data/minecraft/rsninja-2020/tiles/14_987_x-512_z1024.png deleted file mode 100644 index e9c624c..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/14_987_x-512_z1024.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/14_988_x-512_z2048.png b/static/map-data/minecraft/rsninja-2020/tiles/14_988_x-512_z2048.png deleted file mode 100644 index 2851214..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/14_988_x-512_z2048.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/14_990_x-512_z4096.png b/static/map-data/minecraft/rsninja-2020/tiles/14_990_x-512_z4096.png deleted file mode 100644 index 1c085ce..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/14_990_x-512_z4096.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/15_985_x512_z-1024.png b/static/map-data/minecraft/rsninja-2020/tiles/15_985_x512_z-1024.png deleted file mode 100644 index 1c9decd..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/15_985_x512_z-1024.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/15_986_x512_z0.png b/static/map-data/minecraft/rsninja-2020/tiles/15_986_x512_z0.png deleted file mode 100644 index e8cab6a..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/15_986_x512_z0.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/15_988_x512_z2048.png b/static/map-data/minecraft/rsninja-2020/tiles/15_988_x512_z2048.png deleted file mode 100644 index 1dfb919..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/15_988_x512_z2048.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/17_983_x2560_z-3072.png b/static/map-data/minecraft/rsninja-2020/tiles/17_983_x2560_z-3072.png deleted file mode 100644 index da3329c..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/17_983_x2560_z-3072.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/23_991_x8704_z5120.png b/static/map-data/minecraft/rsninja-2020/tiles/23_991_x8704_z5120.png deleted file mode 100644 index 87ad398..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/23_991_x8704_z5120.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/24_991_x9728_z5120.png b/static/map-data/minecraft/rsninja-2020/tiles/24_991_x9728_z5120.png deleted file mode 100644 index 44eed36..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/24_991_x9728_z5120.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/24_992_x9728_z6144.png b/static/map-data/minecraft/rsninja-2020/tiles/24_992_x9728_z6144.png deleted file mode 100644 index 7798289..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/24_992_x9728_z6144.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/24_993_x9728_z7168.png b/static/map-data/minecraft/rsninja-2020/tiles/24_993_x9728_z7168.png deleted file mode 100644 index 17de4fe..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/24_993_x9728_z7168.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/25_993_x10752_z7168.png b/static/map-data/minecraft/rsninja-2020/tiles/25_993_x10752_z7168.png deleted file mode 100644 index 0a3a039..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/25_993_x10752_z7168.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/28_986_x13824_z0.png b/static/map-data/minecraft/rsninja-2020/tiles/28_986_x13824_z0.png deleted file mode 100644 index 7187453..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/28_986_x13824_z0.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/tiles/5_992_x-9728_z6144.png b/static/map-data/minecraft/rsninja-2020/tiles/5_992_x-9728_z6144.png deleted file mode 100644 index e4fc3d7..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/tiles/5_992_x-9728_z6144.png and /dev/null differ diff --git a/static/map-data/minecraft/rsninja-2020/world.png b/static/map-data/minecraft/rsninja-2020/world.png deleted file mode 100644 index 28a7ab7..0000000 Binary files a/static/map-data/minecraft/rsninja-2020/world.png and /dev/null differ