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
|
||||
public boolean updateInfo(DrawSettings drawSettings) {
|
||||
MapMarker marker = getMarker();
|
||||
if (marker == null || map.getMyApplication().getRoutingHelper().isFollowingMode()) {
|
||||
if (marker == null
|
||||
|| map.getMyApplication().getRoutingHelper().isRoutePlanningMode()
|
||||
|| map.getMyApplication().getRoutingHelper().isFollowingMode()) {
|
||||
cachedMeters = 0;
|
||||
setText(null, null);
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue