diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-01-08 21:27:32 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-01-08 21:27:32 +0100 |
commit | 240976e8056624ee93f858829b75e33993561c24 (patch) | |
tree | fd032ce45ef20187be2ee5023b0aa965365e8102 /lib/DBInfoscreen/Controller/Map.pm | |
parent | 8af56f340b6af2684fe4365bc33b478e56654a2b (diff) |
show station location in map2.5.9
Diffstat (limited to 'lib/DBInfoscreen/Controller/Map.pm')
-rw-r--r-- | lib/DBInfoscreen/Controller/Map.pm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/DBInfoscreen/Controller/Map.pm b/lib/DBInfoscreen/Controller/Map.pm index 70b2644..6ab2c32 100644 --- a/lib/DBInfoscreen/Controller/Map.pm +++ b/lib/DBInfoscreen/Controller/Map.pm @@ -68,6 +68,9 @@ sub route { my $trip_id = $self->stash('tripid'); my $line_no = $self->stash('lineno'); + my $from_name = $self->param('from'); + my $to_name = $self->param('to'); + $self->render_later; $self->get_hafas_polyline_p( $trip_id, $line_no )->then( @@ -102,6 +105,29 @@ sub route { my @stop_lines = ( $stop->{stop}{name} ); my ( $platform, $arr, $dep, $arr_delay, $dep_delay ); + if ( $from_name and $stop->{stop}{name} eq $from_name ) { + push( + @markers, + { + lon => $stop->{stop}{location}{longitude}, + lat => $stop->{stop}{location}{latitude}, + title => $stop->{stop}{name}, + icon => 'greenIcon', + } + ); + } + if ( $to_name and $stop->{stop}{name} eq $to_name ) { + push( + @markers, + { + lon => $stop->{stop}{location}{longitude}, + lat => $stop->{stop}{location}{latitude}, + title => $stop->{stop}{name}, + icon => 'goldIcon', + } + ); + } + if ( $stop->{arrival} and $arr = $strp->parse_datetime( $stop->{arrival} ) ) { |