Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
Alexander Borsuk
1c5de3660f Change position arrow color to outdated after 10 seconds of missing GPS instead of 30 seconds
Signed-off-by: Alexander Borsuk <me@alex.bio>
2023-03-27 00:17:42 +02:00
Alexander Borsuk
ff0ad232f3 [styles] Regenerated
Signed-off-by: Alexander Borsuk <me@alex.bio>
2023-03-27 00:17:42 +02:00
Alexander Borsuk
9d0a00db93 Red color for outdated position arrow instead of greyish-blue
Signed-off-by: Alexander Borsuk <me@alex.bio>
2023-03-27 00:17:41 +02:00
14 changed files with 11 additions and 10 deletions

View file

@ -344,7 +344,8 @@
872415231
1074860288
1090519039
1216522952
1221990424
1223166995
1292174597
1292964096
1293171732

Binary file not shown.

View file

@ -103037,7 +103037,7 @@ colors {
}
value {
name: "Arrow3DObsolete"
color: 1216522952
color: 1223166995
}
value {
name: "Arrow3DOutline"

Binary file not shown.

View file

@ -103122,7 +103122,7 @@ colors {
}
value {
name: "Arrow3DObsolete"
color: 1216522952
color: 1221990424
}
value {
name: "Arrow3DOutline"

Binary file not shown.

View file

@ -71760,7 +71760,7 @@ colors {
}
value {
name: "Arrow3DObsolete"
color: 1216522952
color: 1223166995
}
value {
name: "Arrow3DOutline"

Binary file not shown.

View file

@ -72084,7 +72084,7 @@ colors {
}
value {
name: "Arrow3DObsolete"
color: 1216522952
color: 1221990424
}
value {
name: "Arrow3DOutline"

View file

@ -51,7 +51,7 @@ colors
RouteFake-color: #A8A8A8;
RouteFakeOutline-color: #717171;
Arrow3D-color: #50AAFF;
Arrow3DObsolete-color: #82AAC8;
Arrow3DObsolete-color: #E80C13;
Arrow3DObsolete-opacity: 0.72;
Arrow3DShadow-color: #3C3C3C;
Arrow3DShadow-opacity: 0.24;

View file

@ -51,7 +51,7 @@ colors
RouteFake-color: #A8A8A8;
RouteFakeOutline-color: #717171;
Arrow3D-color: #41C8FF;
Arrow3DObsolete-color: #82AAC8;
Arrow3DObsolete-color: #D61818;
Arrow3DObsolete-opacity: 0.72;
Arrow3DShadow-color: #3C3C3C;
Arrow3DShadow-opacity: 0.24;

View file

@ -51,7 +51,7 @@ colors
RouteFake-color: #A8A8A8;
RouteFakeOutline-color: #717171;
Arrow3D-color: #50AAFF;
Arrow3DObsolete-color: #82AAC8;
Arrow3DObsolete-color: #E80C13;
Arrow3DObsolete-opacity: 0.72;
Arrow3DShadow-color: #3C3C3C;
Arrow3DShadow-opacity: 0.24;

View file

@ -51,7 +51,7 @@ colors
RouteFake-color: #A8A8A8;
RouteFakeOutline-color: #717171;
Arrow3D-color: #41C8FF;
Arrow3DObsolete-color: #82AAC8;
Arrow3DObsolete-color: #D61818;
Arrow3DObsolete-opacity: 0.72;
Arrow3DShadow-color: #3C3C3C;
Arrow3DShadow-opacity: 0.24;

View file

@ -29,7 +29,7 @@ double const kGpsBearingLifetimeSec = 5.0;
double const kMaxPendingLocationTimeSec = 60.0;
double const kMaxTimeInBackgroundSec = 60.0 * 60 * 30; // 30 hours before starting detecting position again
double const kMaxNotFollowRoutingTimeSec = 20.0;
double const kMaxUpdateLocationInvervalSec = 30.0;
double const kMaxUpdateLocationInvervalSec = 10.0; // It is important to see that GPS was lost ASAP.
double const kMaxBlockAutoZoomTimeSec = 10.0;
int const kZoomThreshold = 10;