Description:
In Outdoor map, when user clicks on a place and clicks on either set Starting or Destination point button, the direction routes does not display properly.
Resolution:
In map-coordinator.service.ts, in line 84, the second parsedSource should be parsedDestination
this._prepareOutdoor(maps, parsedSource, parsedSource, directionForm.transport); [bad]
this._prepareOutdoor(maps, parsedSource, parsedDestination, directionForm.transport); [good]
Description: In Outdoor map, when user clicks on a place and clicks on either set Starting or Destination point button, the direction routes does not display properly.
Resolution: In map-coordinator.service.ts, in line 84, the second parsedSource should be parsedDestination
this._prepareOutdoor(maps, parsedSource, parsedSource, directionForm.transport);
[bad]this._prepareOutdoor(maps, parsedSource, parsedDestination, directionForm.transport);
[good]Reproduce:
run master as commit cb03171
click on a location on outdoor map
click on set Starting point
choose another place and set Destination point
Actual Behavior: The map display a single marker and no route from starting to destination.
Found in commit: cb03171
Resolved in commit: