show field of view, display tags in tabular form

This commit is contained in:
Will Freeman
2024-10-13 15:36:03 -05:00
parent c3edcc6e20
commit fb2f1c397a
4 changed files with 107 additions and 16 deletions
+7
View File
@@ -0,0 +1,7 @@
export interface ALPR {
id: string;
lat: number;
lon: number;
tags: Record<string, string>;
type: string;
};