Fix exit info
This commit is contained in:
parent
738f74f633
commit
f7704d72b0
1 changed files with 3 additions and 1 deletions
|
@ -1023,7 +1023,9 @@ public class MapInfoWidgetsFactory {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (showExitInfo) {
|
if (showExitInfo) {
|
||||||
text = exitInfo.getExitStreetName();
|
if(!Algorithms.isEmpty(exitInfo.getExitStreetName())) {
|
||||||
|
text = exitInfo.getExitStreetName();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (directionInfo != null && directionInfo.getRouteDataObject() != null) {
|
if (directionInfo != null && directionInfo.getRouteDataObject() != null) {
|
||||||
|
|
Loading…
Reference in a new issue