Upload 6 files
Browse files- .gitattributes +3 -0
- Australia Oceania MapKit/MapKit-Renderer.index.html +35 -0
- Australia Oceania MapKit/australia-oceania-260330.osm.pbf +3 -0
- Central America MapKit/MapKit-Renderer.index.html +35 -0
- Central America MapKit/central-america-260330.osm.pbf +3 -0
- South America MapKit/MapKit-Renderer.index.html +35 -0
- South America MapKit/south-america-260330.osm.pbf +3 -0
.gitattributes
CHANGED
|
@@ -60,3 +60,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
Antarctica[[:space:]]MapKit/antarctica-260330.osm.pbf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
Afirica[[:space:]]MapKit/africa-260330.osm.pbf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
Antarctica[[:space:]]MapKit/antarctica-260330.osm.pbf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
Afirica[[:space:]]MapKit/africa-260330.osm.pbf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
Australia[[:space:]]Oceania[[:space:]][[:space:]]MapKit/australia-oceania-260330.osm.pbf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
Central[[:space:]]America[[:space:]]MapKit/central-america-260330.osm.pbf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
South[[:space:]]America[[:space:]]MapKit/south-america-260330.osm.pbf filter=lfs diff=lfs merge=lfs -text
|
Australia Oceania MapKit/MapKit-Renderer.index.html
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>MapKit Renderer</title>
|
| 5 |
+
<meta charset="utf-8" />
|
| 6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 7 |
+
<!-- Leaflet CSS -->
|
| 8 |
+
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css"/>
|
| 9 |
+
<style>
|
| 10 |
+
#map { height: 100vh; }
|
| 11 |
+
</style>
|
| 12 |
+
</head>
|
| 13 |
+
<body>
|
| 14 |
+
<div id="map"></div>
|
| 15 |
+
|
| 16 |
+
<!-- Leaflet JS -->
|
| 17 |
+
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
|
| 18 |
+
<script>
|
| 19 |
+
// Initialize map centered on Hong Kong
|
| 20 |
+
var map = L.map('map').setView([22.3193, 114.1694], 12);
|
| 21 |
+
|
| 22 |
+
// Base layer (OpenStreetMap tiles)
|
| 23 |
+
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
| 24 |
+
attribution: '© OpenStreetMap contributors'
|
| 25 |
+
}).addTo(map);
|
| 26 |
+
|
| 27 |
+
// Example: load GeoJSON data (replace with your MapKit file)
|
| 28 |
+
fetch('hongkong_mapkit.geojson')
|
| 29 |
+
.then(response => response.json())
|
| 30 |
+
.then(data => {
|
| 31 |
+
L.geoJSON(data).addTo(map);
|
| 32 |
+
});
|
| 33 |
+
</script>
|
| 34 |
+
</body>
|
| 35 |
+
</html>
|
Australia Oceania MapKit/australia-oceania-260330.osm.pbf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:887f610cc51392d8fc7556fda39526f6359d4436b13e69846f415b6953e0b63a
|
| 3 |
+
size 1513596983
|
Central America MapKit/MapKit-Renderer.index.html
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>MapKit Renderer</title>
|
| 5 |
+
<meta charset="utf-8" />
|
| 6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 7 |
+
<!-- Leaflet CSS -->
|
| 8 |
+
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css"/>
|
| 9 |
+
<style>
|
| 10 |
+
#map { height: 100vh; }
|
| 11 |
+
</style>
|
| 12 |
+
</head>
|
| 13 |
+
<body>
|
| 14 |
+
<div id="map"></div>
|
| 15 |
+
|
| 16 |
+
<!-- Leaflet JS -->
|
| 17 |
+
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
|
| 18 |
+
<script>
|
| 19 |
+
// Initialize map centered on Hong Kong
|
| 20 |
+
var map = L.map('map').setView([22.3193, 114.1694], 12);
|
| 21 |
+
|
| 22 |
+
// Base layer (OpenStreetMap tiles)
|
| 23 |
+
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
| 24 |
+
attribution: '© OpenStreetMap contributors'
|
| 25 |
+
}).addTo(map);
|
| 26 |
+
|
| 27 |
+
// Example: load GeoJSON data (replace with your MapKit file)
|
| 28 |
+
fetch('hongkong_mapkit.geojson')
|
| 29 |
+
.then(response => response.json())
|
| 30 |
+
.then(data => {
|
| 31 |
+
L.geoJSON(data).addTo(map);
|
| 32 |
+
});
|
| 33 |
+
</script>
|
| 34 |
+
</body>
|
| 35 |
+
</html>
|
Central America MapKit/central-america-260330.osm.pbf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73cfb4527ac8e9958b84ad4be9b4e3a5237f542eb2e4eb48d8215cccd042bb75
|
| 3 |
+
size 768507739
|
South America MapKit/MapKit-Renderer.index.html
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>MapKit Renderer</title>
|
| 5 |
+
<meta charset="utf-8" />
|
| 6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 7 |
+
<!-- Leaflet CSS -->
|
| 8 |
+
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css"/>
|
| 9 |
+
<style>
|
| 10 |
+
#map { height: 100vh; }
|
| 11 |
+
</style>
|
| 12 |
+
</head>
|
| 13 |
+
<body>
|
| 14 |
+
<div id="map"></div>
|
| 15 |
+
|
| 16 |
+
<!-- Leaflet JS -->
|
| 17 |
+
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
|
| 18 |
+
<script>
|
| 19 |
+
// Initialize map centered on Hong Kong
|
| 20 |
+
var map = L.map('map').setView([22.3193, 114.1694], 12);
|
| 21 |
+
|
| 22 |
+
// Base layer (OpenStreetMap tiles)
|
| 23 |
+
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
| 24 |
+
attribution: '© OpenStreetMap contributors'
|
| 25 |
+
}).addTo(map);
|
| 26 |
+
|
| 27 |
+
// Example: load GeoJSON data (replace with your MapKit file)
|
| 28 |
+
fetch('hongkong_mapkit.geojson')
|
| 29 |
+
.then(response => response.json())
|
| 30 |
+
.then(data => {
|
| 31 |
+
L.geoJSON(data).addTo(map);
|
| 32 |
+
});
|
| 33 |
+
</script>
|
| 34 |
+
</body>
|
| 35 |
+
</html>
|
South America MapKit/south-america-260330.osm.pbf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e1ec300cfdfc1861f070ffdced0cff76864a4c240d5f9216f2ee80bfd2261a5
|
| 3 |
+
size 3915725054
|