House Tracker · Aruba Island
🌍 The map is public — no login needed to view.
Sign in as admin17 to mark or edit buildings.
or

📋 Visit Log

All buildings saved to database

Loading map…

Mark as Visited

Add an optional note for this location

⬆ Import CSV

Import a previously exported CSV to restore visit history.
Required columns: ID, Address, Latitude, Longitude, Visited At, Note

📂 Click to choose a CSV file
or drag & drop it here

⚙️ Settings & Cloud Sync

Connect a free Supabase database so your visited buildings sync automatically between your phone, tablet and computer.

☁️ Supabase Credentials

Project URL From your Supabase project → Settings → API
Anon / Public Key The anon public key — safe to use in a browser
Don't have a project yet? Create one free at supabase.com →

🗄️ One-time Database Setup

Click the button below to set up your database automatically, or copy the SQL and run it manually in Supabase → SQL Editor.

DROP TABLE IF EXISTS visits; CREATE TABLE visits ( id text PRIMARY KEY, address text, lat float8, lng float8, visited_at timestamptz DEFAULT now(), note text DEFAULT '', geom jsonb ); ALTER TABLE visits ENABLE ROW LEVEL SECURITY; CREATE POLICY "allow_all" ON visits FOR ALL USING (true) WITH CHECK (true); ALTER PUBLICATION supabase_realtime ADD TABLE visits;