#!/bin/bash
echo "🌐 Starting local server..."
echo "📍 Open http://localhost:8000/map_viewer.html in your browser"
echo "Press Ctrl+C to stop the server"
cd "$(dirname "$0")"
python3 -m http.server 8000
