`;
// Aggregate properties JOSM-style
const allKeys = new Set();
selectedFeatures.forEach(feature => {
Object.keys(feature.properties || {}).forEach(key => {
if (key !== 'removed') allKeys.add(key);
});
});
// Priority order for display
const priorityOrder = {
'addr:housenumber': 0,
'addr:street': 1,
'addr:unit': 2,
'addr:city': 3,
'addr:postcode': 4,
'addr:state': 5,
'name': 10,
'highway': 11,
// County road fields
'Lifecycle': 20,
'LIFECYCLE': 20,
'FullStreetN': 21,
'FullName': 21,
'StreetClass': 22,
'STRCLASS': 22,
'SpeedLimit': 23,
'SPEEDLIMIT': 23,
'LeftCity': 24,
'RightCity': 25,
'LeftZip': 26,
'RightZip': 27,
};
const sortedKeys = Array.from(allKeys).sort((a, b) => {
const aPriority = priorityOrder[a] ?? 999;
const bPriority = priorityOrder[b] ?? 999;
if (aPriority !== bPriority) {
return aPriority - bPriority;
}
return a.localeCompare(b);
});
// For each property, check if all values are the same
html += '
';
for (const key of sortedKeys) {
const values = selectedFeatures
.map(f => f.properties[key])
.filter(v => v !== null && v !== undefined);
if (values.length === 0) continue;
const uniqueValues = [...new Set(values.map(v => String(v)))];
let displayValue;
if (uniqueValues.length === 1) {
// All values are the same
displayValue = uniqueValues[0];
} else {
// Different values
displayValue = `<${uniqueValues.length} different values>`;
}
html += `
${key}: ${displayValue}
`;
}
html += '
';
// Show layer types if mixed
const layerTypes = selectedLayers.map(l => l.type);
const uniqueLayerTypes = [...new Set(layerTypes)];
if (uniqueLayerTypes.length > 1) {
html += `
Layers: ${uniqueLayerTypes.join(', ')}
`;
} else {
html += `
Layer: ${uniqueLayerTypes[0].toUpperCase()}
`;
}
// Show status (Added/Removed) for diff layer features
const hasDiffFeatures = selectedLayers.some(l => l.type === 'diff');
if (hasDiffFeatures) {
const addedCount = selectedFeatures.filter(f => !f.properties || f.properties.removed !== true && f.properties.removed !== 'True').length;
const removedCount = selectedFeatures.filter(f => f.properties && (f.properties.removed === true || f.properties.removed === 'True')).length;
if (selectedFeatures.length === 1) {
// Single selection - show specific status
const isRemoved = selectedFeatures[0].properties && (selectedFeatures[0].properties.removed === true || selectedFeatures[0].properties.removed === 'True');
html += `
`;
}
}
// Show accept/reject status if any are from diff layer
if (hasDiffFeatures) {
const acceptedCount = selectedFeatures.filter(f => acceptedFeatures.has(f)).length;
const rejectedCount = selectedFeatures.filter(f => rejectedFeatures.has(f)).length;
if (acceptedCount > 0 || rejectedCount > 0) {
html += '
';
if (acceptedCount > 0) html += `
✓ ${acceptedCount} accepted
`;
if (rejectedCount > 0) html += `
✗ ${rejectedCount} rejected
`;
html += '
';
}
// Show accept/reject buttons only if all selected features are from diff layer
const allDiff = selectedLayers.every(l => l.type === 'diff');
if (allDiff) {
const buttonText = selectedFeatures.length === 1 ? '' : ' All';
html += '
';
html += ``;
html += ``;
html += '
';
}
}
html += '
';
// Create popup at click location
featurePopup = L.popup({
maxWidth: 300,
closeButton: true,
autoClose: false,
closeOnClick: false
})
.setLatLng(latlng)
.setContent(html)
.openOn(map);
// Handle popup close
featurePopup.on('remove', function() {
clearSelection();
});
}
// Accept all selected features
function acceptAllFeatures() {
if (selectedFeatures.length === 0) return;
selectedFeatures.forEach((feature, index) => {
// Remove from rejected if present
rejectedFeatures.delete(feature);
// Add to accepted
acceptedFeatures.add(feature);
// Update layer style
const layerInfo = selectedLayers[index];
if (layerInfo && layerInfo.layer) {
const isPoint = feature.geometry.type === 'Point';
if (isPoint) {
layerInfo.layer.setStyle(diffMarkerStyle(feature));
} else {
layerInfo.layer.setStyle(diffStyle(feature));
}
}
});
// Close popup
if (featurePopup) {
map.closePopup(featurePopup);
}
// Clear selection
clearSelection();
// Enable save button
updateSaveButton();
showStatus(`${acceptedFeatures.size} accepted, ${rejectedFeatures.size} rejected`, 'success');
}
// Reject all selected features
function rejectAllFeatures() {
if (selectedFeatures.length === 0) return;
selectedFeatures.forEach((feature, index) => {
// Remove from accepted if present
acceptedFeatures.delete(feature);
// Add to rejected
rejectedFeatures.add(feature);
// Update layer style
const layerInfo = selectedLayers[index];
if (layerInfo && layerInfo.layer) {
const isPoint = feature.geometry.type === 'Point';
if (isPoint) {
layerInfo.layer.setStyle(diffMarkerStyle(feature));
} else {
layerInfo.layer.setStyle(diffStyle(feature));
}
}
});
// Close popup
if (featurePopup) {
map.closePopup(featurePopup);
}
// Clear selection
clearSelection();
// Enable save button
updateSaveButton();
showStatus(`${acceptedFeatures.size} accepted, ${rejectedFeatures.size} rejected`, 'success');
}
// Expose functions globally for onclick handlers
window.acceptAllFeatures = acceptAllFeatures;
window.rejectAllFeatures = rejectAllFeatures;
// Update save button state
function updateSaveButton() {
document.getElementById('saveButton').disabled =
acceptedFeatures.size === 0 && rejectedFeatures.size === 0;
}
// Load GeoJSON from server
async function loadFromServer(url) {
const response = await fetch(url);
if (!response.ok) {
if (response.status === 404) {
return null; // File doesn't exist
}
throw new Error(`Failed to load ${url}: ${response.statusText}`);
}
return await response.json();
}
// Load all files from server
async function loadFiles() {
try {
showStatus('Loading data from server...', 'success');
const county = document.getElementById('countySelect').value;
const dataType = document.getElementById('dataTypeSelect').value;
// Build file paths based on county and data type
let osmFile, diffFile, countyFile, diffAddedFile, diffRemovedFile;
if (dataType === 'roads') {
osmFile = `latest/${county}/osm-roads.geojson`;
diffFile = `latest/${county}/diff-roads.geojson`;
countyFile = `latest/${county}/county-roads.geojson`;
} else if (dataType === 'paths') {
osmFile = `latest/${county}/osm-paths.geojson`;
diffFile = `latest/${county}/diff-paths.geojson`;
countyFile = `latest/${county}/county-paths.geojson`;
} else if (dataType === 'addresses') {
osmFile = `latest/${county}/osm-addresses.geojson`;
diffAddedFile = `latest/${county}/addresses-to-add.geojson`;
diffRemovedFile = `latest/${county}/addresses-potentially-removed.geojson`;
countyFile = `latest/${county}/addresses.shp_converted.geojson`;
}
// Load files from server
osmData = osmFile ? await loadFromServer(`/data/${osmFile}`) : null;
countyData = countyFile ? await loadFromServer(`/data/${countyFile}`) : null;
// For addresses, load both added and removed files and combine them
if (dataType === 'addresses' && (diffAddedFile || diffRemovedFile)) {
const addedData = diffAddedFile ? await loadFromServer(`/data/${diffAddedFile}`) : null;
const removedData = diffRemovedFile ? await loadFromServer(`/data/${diffRemovedFile}`) : null;
// Combine both datasets into diffData
diffData = {
type: 'FeatureCollection',
features: []
};
// Add "removed" features FIRST (red) - they will render beneath
if (removedData && removedData.features) {
removedData.features.forEach(feature => {
if (!feature.properties) feature.properties = {};
feature.properties.removed = true;
diffData.features.push(feature);
});
}
// Add "added" features SECOND (green) - they will render on top
if (addedData && addedData.features) {
addedData.features.forEach(feature => {
// Ensure removed property is not set or is false
if (!feature.properties) feature.properties = {};
feature.properties.removed = false;
diffData.features.push(feature);
});
}
// If no features loaded, set to null
if (diffData.features.length === 0) {
diffData = null;
}
} else {
// For roads/paths, load single diff file
diffData = diffFile ? await loadFromServer(`/data/${diffFile}`) : null;
}
if (!osmData && !diffData && !countyData) {
showStatus(`No data files found for ${county} ${dataType}. Run the processing scripts first.`, 'error');
return;
}
// Create layers
createOsmLayer();
createDiffLayer();
createCountyLayer();
// Fit bounds to smallest layer
calculateBounds();
let loadedFiles = [];
if (osmData) loadedFiles.push('OSM');
if (diffData) loadedFiles.push('Diff');
if (countyData) loadedFiles.push('County');
showStatus(`Loaded ${loadedFiles.join(', ')} data for ${county} ${dataType}`, 'success');
// Enable save button if we have diff data
document.getElementById('saveButton').disabled = !diffData;
} catch (error) {
showStatus(error.message, 'error');
console.error(error);
}
}
// Save accepted items to separate files (added-approved.geojson and removed-approved.geojson)
async function saveAcceptedItems() {
if (!diffData || acceptedFeatures.size === 0) {
showStatus('No accepted features to save', 'error');
return;
}
try {
// Separate accepted features into added and removed
const acceptedAdded = [];
const acceptedRemoved = [];
diffData.features.forEach(feature => {
if (acceptedFeatures.has(feature)) {
// Clone feature and remove status/approved/removed properties
const cleanFeature = {
type: feature.type,
geometry: feature.geometry,
properties: {}
};
// Copy all properties except status, accepted, and removed
Object.keys(feature.properties).forEach(key => {
if (key !== 'status' && key !== 'accepted' && key !== 'removed') {
cleanFeature.properties[key] = feature.properties[key];
}
});
// Determine if added or removed
const isRemoved = feature.properties && (feature.properties.removed === true || feature.properties.removed === 'True');
if (isRemoved) {
acceptedRemoved.push(cleanFeature);
} else {
acceptedAdded.push(cleanFeature);
}
}
});
// Create and download added-approved.geojson
if (acceptedAdded.length > 0) {
const addedData = {
type: 'FeatureCollection',
features: acceptedAdded
};
const addedStr = JSON.stringify(addedData, null, 2);
const addedBlob = new Blob([addedStr], { type: 'application/json' });
const addedUrl = URL.createObjectURL(addedBlob);
const addedLink = document.createElement('a');
addedLink.href = addedUrl;
addedLink.download = 'added-approved.geojson';
document.body.appendChild(addedLink);
addedLink.click();
document.body.removeChild(addedLink);
URL.revokeObjectURL(addedUrl);
}
// Create and download removed-approved.geojson
if (acceptedRemoved.length > 0) {
const removedData = {
type: 'FeatureCollection',
features: acceptedRemoved
};
const removedStr = JSON.stringify(removedData, null, 2);
const removedBlob = new Blob([removedStr], { type: 'application/json' });
const removedUrl = URL.createObjectURL(removedBlob);
const removedLink = document.createElement('a');
removedLink.href = removedUrl;
removedLink.download = 'removed-approved.geojson';
document.body.appendChild(removedLink);
removedLink.click();
document.body.removeChild(removedLink);
URL.revokeObjectURL(removedUrl);
}
showStatus(`Saved ${acceptedAdded.length} added, ${acceptedRemoved.length} removed (approved only)`, 'success');
} catch (error) {
showStatus(`Save failed: ${error.message}`, 'error');
console.error(error);
}
}
// Show status message
function showStatus(message, type) {
const status = document.getElementById('status');
status.textContent = message;
status.className = `status ${type}`;
setTimeout(() => {
status.classList.add('hidden');
}, 3000);
}
// Update pane z-index based on order
function updateLayerZIndex() {
const panes = {
'osm': 'osmPane',
'diff': 'diffPane',
'county': 'countyPane'
};
const layers = {
'osm': osmLayer,
'diff': diffLayer,
'county': countyLayer
};
// Reverse index so first item in list is on top
// Use higher base z-index (650) to ensure we're above overlay pane
layerOrder.forEach((layerName, index) => {
const paneName = panes[layerName];
const pane = map.getPane(paneName);
if (pane) {
const zIndex = 650 + (layerOrder.length - 1 - index);
pane.style.zIndex = zIndex;
}
});
// Also bring layers to front in reverse order (last first, so first ends up on top)
for (let i = layerOrder.length - 1; i >= 0; i--) {
const layer = layers[layerOrder[i]];
if (layer && map.hasLayer(layer)) {
layer.bringToFront();
}
}
}
// Toggle layer visibility
function toggleLayer(layerId, layer) {
const checkbox = document.getElementById(layerId);
if (checkbox.checked && layer) {
if (!map.hasLayer(layer)) {
map.addLayer(layer);
}
} else if (layer) {
if (map.hasLayer(layer)) {
map.removeLayer(layer);
}
}
// Always update z-index after toggling any layer
updateLayerZIndex();
}
// Event listeners
document.addEventListener('DOMContentLoaded', function() {
initMap();
// Mobile hamburger menu toggle
const hamburgerButton = document.getElementById('hamburgerButton');
const closeButton = document.getElementById('closeButton');
const controls = document.getElementById('controls');
const overlay = document.getElementById('overlay');
function toggleControls() {
mobileControlsOpen = !mobileControlsOpen;
controls.classList.toggle('open');
hamburgerButton.classList.toggle('active');
overlay.classList.toggle('active');
}
function closeControls() {
mobileControlsOpen = false;
controls.classList.remove('open');
hamburgerButton.classList.remove('active');
overlay.classList.remove('active');
}
// Expose closeControls globally for other functions
window.closeMobileControls = closeControls;
hamburgerButton.addEventListener('click', toggleControls);
closeButton.addEventListener('click', closeControls);
overlay.addEventListener('click', closeControls);
// Layer toggles
document.getElementById('osmToggle').addEventListener('change', function() {
toggleLayer('osmToggle', osmLayer);
});
document.getElementById('diffToggle').addEventListener('change', function() {
toggleLayer('diffToggle', diffLayer);
});
document.getElementById('countyToggle').addEventListener('change', function() {
toggleLayer('countyToggle', countyLayer);
});
// Diff filter toggles
document.getElementById('showAdded').addEventListener('change', function() {
createDiffLayer();
});
document.getElementById('showRemoved').addEventListener('change', function() {
createDiffLayer();
});
document.getElementById('hideService').addEventListener('change', function() {
createDiffLayer();
createOsmLayer();
createCountyLayer();
});
document.getElementById('hideUnclassified').addEventListener('change', function() {
createDiffLayer();
createOsmLayer();
createCountyLayer();
});
// Click on empty map area closes any open popup and clears selection
map.on('click', function() {
clearSelection();
});
// Load button
document.getElementById('loadButton').addEventListener('click', function() {
loadFiles();
// Auto-close controls on mobile after clicking load
if (window.innerWidth <= 768) {
setTimeout(closeControls, 300);
}
});
// Save button
document.getElementById('saveButton').addEventListener('click', saveAcceptedItems);
// Multi-select toggle button
document.getElementById('multiSelectToggle').addEventListener('click', function() {
multiSelectMode = !multiSelectMode;
const button = document.getElementById('multiSelectToggle');
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();
}
});
// Drag and drop for layer reordering
const layerList = document.getElementById('layerList');
const layerItems = layerList.querySelectorAll('.layer-item');
let draggedElement = null;
layerItems.forEach(item => {
item.addEventListener('dragstart', function(e) {
draggedElement = this;
this.classList.add('dragging');
e.dataTransfer.effectAllowed = 'move';
});
item.addEventListener('dragend', function(e) {
this.classList.remove('dragging');
draggedElement = null;
});
item.addEventListener('dragover', function(e) {
e.preventDefault();
e.dataTransfer.dropEffect = 'move';
if (this === draggedElement) return;
const afterElement = getDragAfterElement(layerList, e.clientY);
if (afterElement == null) {
layerList.appendChild(draggedElement);
} else {
layerList.insertBefore(draggedElement, afterElement);
}
});
item.addEventListener('drop', function(e) {
e.preventDefault();
// Update layer order based on new DOM order
layerOrder = Array.from(layerList.querySelectorAll('.layer-item'))
.map(item => item.dataset.layer);
updateLayerZIndex();
});
});
function getDragAfterElement(container, y) {
const draggableElements = [...container.querySelectorAll('.layer-item:not(.dragging)')];
return draggableElements.reduce((closest, child) => {
const box = child.getBoundingClientRect();
const offset = y - box.top - box.height / 2;
if (offset < 0 && offset > closest.offset) {
return { offset: offset, element: child };
} else {
return closest;
}
}, { offset: Number.NEGATIVE_INFINITY }).element;
}
});