commit 9bf1db9889ecd76852182f9b95506d764759803b Author: user01 Date: Fri May 15 16:26:14 2026 +0900 Initial commit: Map Flag Placer with Leaflet, Excel import/export, admin boundaries, and photo upload diff --git a/index.html b/index.html new file mode 100644 index 0000000..c0f279b --- /dev/null +++ b/index.html @@ -0,0 +1,807 @@ + + + + + +Flag Placer + + + + + + + + + +
+ + + + diff --git a/sample.xlsx b/sample.xlsx new file mode 100644 index 0000000..c94a934 Binary files /dev/null and b/sample.xlsx differ diff --git a/server.py b/server.py new file mode 100644 index 0000000..1c1965e --- /dev/null +++ b/server.py @@ -0,0 +1,9 @@ +import http.server +import socketserver + +PORT = 8000 +Handler = http.server.SimpleHTTPRequestHandler + +with socketserver.TCPServer(("", PORT), Handler) as httpd: + print(f"Serving at http://localhost:{PORT}") + httpd.serve_forever()