Added apartment views and city of edmonton data import

This commit is contained in:
2025-07-27 16:19:12 -06:00
parent 8fd5d798e1
commit f0289d027e
11 changed files with 1357 additions and 11 deletions

View File

@@ -11,6 +11,10 @@
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin="" />
<!-- Leaflet MarkerCluster CSS -->
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.5.3/dist/MarkerCluster.css" />
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.5.3/dist/MarkerCluster.Default.css" />
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
@@ -18,7 +22,7 @@
<div id="app">
<!-- Header -->
<header class="header">
<h1>Map for CM-lite</h1>
<h1>Map</h1>
<!-- Add documentation search bar -->
<div class="docs-search-container">
@@ -91,6 +95,10 @@
<span class="btn-icon">🏠</span>
<span class="btn-text">Hide Start Location</span>
</button>
<button id="toggle-edmonton-layer-btn" class="btn btn-secondary" title="Toggle City of Edmonton address layer">
<span class="btn-icon">🏙️</span>
<span class="btn-text">City Data</span>
</button>
<button id="refresh-btn" class="btn btn-primary">
<span class="btn-icon">🔄</span>
<span class="btn-text">Refresh</span>
@@ -103,6 +111,7 @@
<span class="btn-icon"></span>
<span class="btn-text">Add Location Here</span>
</button>
<button id="fullscreen-btn" class="btn btn-secondary">
<span class="btn-icon"></span>
<span class="btn-text">Fullscreen</span>
@@ -123,6 +132,9 @@
<button id="mobile-add-location-btn" class="btn btn-success" title="Add Location">
</button>
<button id="mobile-toggle-edmonton-layer-btn" class="btn btn-secondary" title="Toggle Edmonton Data">
🏙️
</button>
<button id="mobile-fullscreen-btn" class="btn btn-secondary" title="Fullscreen">
</button>
@@ -376,6 +388,9 @@
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""></script>
<!-- Leaflet MarkerCluster JS -->
<script src="https://unpkg.com/leaflet.markercluster@1.5.3/dist/leaflet.markercluster.js"></script>
<!-- Cache Management -->
<script src="js/cache-manager.js"></script>