nidus-sync/db/migrations/00032_h3_aggregation_add_trap.sql
Eli Ribble 948f967a16
Add aggregation map for traps
This also makes the first time I've done a Mapbox map within a web
component. It's not officially supported according to:

https://github.com/mapbox/mapbox-gl-js/issues/12796

but I found a codepen that had a working example:

https://codepen.io/keichan34/pen/ZEKqeEj?editors=1111
2026-01-15 20:25:00 +00:00

5 lines
147 B
SQL

-- +goose Up
ALTER TYPE H3AggregationType ADD VALUE 'Trap' AFTER 'ServiceRequest';
-- +goose Down
ALTER TYPE H3AggregationType DROP VALUE 'Trap';