Hide marker widgets in route preparation mode
This commit is contained in:
parent
109fefe399
commit
c73df4b794
1 changed files with 3 additions and 1 deletions
|
@ -339,7 +339,9 @@ public class MapMarkersWidgetsFactory {
|
||||||
@Override
|
@Override
|
||||||
public boolean updateInfo(DrawSettings drawSettings) {
|
public boolean updateInfo(DrawSettings drawSettings) {
|
||||||
MapMarker marker = getMarker();
|
MapMarker marker = getMarker();
|
||||||
if (marker == null || map.getMyApplication().getRoutingHelper().isFollowingMode()) {
|
if (marker == null
|
||||||
|
|| map.getMyApplication().getRoutingHelper().isRoutePlanningMode()
|
||||||
|
|| map.getMyApplication().getRoutingHelper().isFollowingMode()) {
|
||||||
cachedMeters = 0;
|
cachedMeters = 0;
|
||||||
setText(null, null);
|
setText(null, null);
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue