add location logging, display last location on map

Signed-off-by: Nicolas Froger <nicolas@kektus.xyz>
This commit is contained in:
Nicolas Froger 2024-07-26 15:36:19 +02:00
commit 130581a411
No known key found for this signature in database
13 changed files with 386 additions and 3 deletions

View file

@ -0,0 +1,7 @@
create table Location
(
id bigserial not null primary key,
latitude float4,
longitude float4,
timestamp timestamp(6) with time zone
);