diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-11-16 14:50:07 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-11-16 14:50:07 +0100 |
commit | 45f747961e14c5f63e895cdda97a830c5837a118 (patch) | |
tree | cf5e3c76a6f848d8d600ce190cf8ceaf4fa52f39 /lib/Travelynx | |
parent | 0bfb71d78d1a7996fe0fb32af063ccfdc6ceea15 (diff) |
map: add station names to points
Diffstat (limited to 'lib/Travelynx')
-rwxr-xr-x | lib/Travelynx/Controller/Traveling.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Travelynx/Controller/Traveling.pm b/lib/Travelynx/Controller/Traveling.pm index a3d5e67..3c4a8d7 100755 --- a/lib/Travelynx/Controller/Traveling.pm +++ b/lib/Travelynx/Controller/Traveling.pm @@ -431,7 +431,7 @@ sub map_history { push( @stations, uniq map { $_->{from_name} } @journeys ); @stations = uniq @stations; my @station_coordinates - = map { $location{$_} } grep { exists $location{$_} } @stations; + = map { [ $location{$_}, $_ ] } grep { exists $location{$_} } @stations; my @uniq_by_route = uniq_by { join( '|', map { $_->[0] } @{ $_->{route} } ) |