add location logging, display last location on map
Signed-off-by: Nicolas Froger <nicolas@kektus.xyz>
This commit is contained in:
parent
4356816f07
commit
130581a411
13 changed files with 386 additions and 3 deletions
|
|
@ -0,0 +1,7 @@
|
|||
create table Location
|
||||
(
|
||||
id bigserial not null primary key,
|
||||
latitude float4,
|
||||
longitude float4,
|
||||
timestamp timestamp(6) with time zone
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue