feat([2fd88f42]): display attributes in point tooltip

This commit is contained in:
2026-02-04 13:22:47 +00:00
parent 66438fd6d0
commit 2c05412dfb
3 changed files with 56 additions and 6 deletions

View File

@@ -16,6 +16,7 @@ export interface HeatmapPoint {
lat: number;
lon: number;
count: number;
attributes_summary?: Record<string, string[]>;
}
export type MapMode = 'points' | 'heatmap';