Move back button into sidebar, remove close button, reorder counties, add TODO notes

This commit is contained in:
zyphlar
2026-04-21 22:26:05 -07:00
parent 32cd6cba59
commit f35bc2dd9d
5 changed files with 92 additions and 50 deletions
+10 -10
View File
@@ -315,24 +315,24 @@ def serve_data(filename):
COUNTIES_FILE = '/data/counties.yml'
DEFAULT_COUNTIES = [
{
'id': 'lake',
'name': 'Lake County',
'state': 'Florida',
'color': '#28a745',
'roads_url': 'https://c.lakecountyfl.gov/ftp/GIS/GisDownloads/Shapefiles/Streets.zip',
'addresses_url': 'https://c.lakecountyfl.gov/ftp/GIS/GisDownloads/Shapefiles/Addresspoints.zip',
'paths_url': '',
},
{
'id': 'sumter',
'name': 'Sumter County',
'state': 'Florida',
'color': '#17a2b8',
'color': '#28a745',
'roads_url': 'https://www.arcgis.com/sharing/rest/content/items/9177e17c72d3433aa79630c7eda84add/data',
'addresses_url': 'https://www.arcgis.com/sharing/rest/content/items/c75c5aac13a648968c5596b0665be28b/data',
'paths_url': 'upload',
},
{
'id': 'lake',
'name': 'Lake County',
'state': 'Florida',
'color': '#17a2b8',
'roads_url': 'https://c.lakecountyfl.gov/ftp/GIS/GisDownloads/Shapefiles/Streets.zip',
'addresses_url': 'https://c.lakecountyfl.gov/ftp/GIS/GisDownloads/Shapefiles/Addresspoints.zip',
'paths_url': '',
},
]
def _ensure_counties_file():