diff --git a/main.py b/main.py index 023692c..60c50a0 100644 --- a/main.py +++ b/main.py @@ -66,7 +66,7 @@ Source = ColumnDataSource(df) ## Initialize our plot figure x_range,y_range=([400000,700000], [6500000, 7500000]) OSM = get_provider('OSM') -p = figure(title="A gtfs feed",x_range=x_range, y_range=y_range, x_axis_type='mercator',y_axis_type='mercator',sizing_mode='stretch_both',plot_width=1500,plot_height=1000) +p = figure(title="A gtfs feed, check out git.sgeboers.nl/sgeboers/gtfs for more information",x_range=x_range, y_range=y_range, x_axis_type='mercator',y_axis_type='mercator',sizing_mode='stretch_both',plot_width=1500,plot_height=1000) p.add_tile(OSM) my_hover=HoverTool() my_hover.tooltips=[('Type','@route_type_long'),('Route id','@route_short_name'),('Route','@route_long_name')]