Fix exit info
This commit is contained in:
parent
95e6ae72b1
commit
8cedb28efa
1 changed files with 3 additions and 1 deletions
|
@ -1022,7 +1022,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