Add counties CRUD page, dynamic county config, crosshair cursor for multi-select

This commit is contained in:
zyphlar
2026-04-09 22:11:38 -07:00
parent f3a1ca6020
commit d904fb4f3d
6 changed files with 547 additions and 113 deletions
+2
View File
@@ -1253,9 +1253,11 @@ document.addEventListener('DOMContentLoaded', function() {
if (multiSelectMode) {
button.style.background = '#007bff';
button.textContent = 'Multi-Select: ON';
map.getContainer().classList.add('multi-select-active');
} else {
button.style.background = '#6c757d';
button.textContent = 'Multi-Select: OFF';
map.getContainer().classList.remove('multi-select-active');
// Clear selection when turning off multi-select mode
clearSelection();
}