diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-09-09 23:53:49 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-09-09 23:53:49 +0200 |
commit | d29dbe491aec00f708a8a66223159784db2feaf3 (patch) | |
tree | f89a7e6fddc9db178e02fece29205bd8b74e0dac | |
parent | add49610829534e6d059f53ec8240ef5f2c9fea1 (diff) | |
download | Chimère-d29dbe491aec00f708a8a66223159784db2feaf3.tar.bz2 Chimère-d29dbe491aec00f708a8a66223159784db2feaf3.zip |
Fix on itinerary permalink
-rw-r--r-- | chimere/templates/chimere/blocks/map_params.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chimere/templates/chimere/blocks/map_params.html b/chimere/templates/chimere/blocks/map_params.html index c4150da..2247c06 100644 --- a/chimere/templates/chimere/blocks/map_params.html +++ b/chimere/templates/chimere/blocks/map_params.html @@ -19,6 +19,7 @@ {% if p_routing_start_lat %}chimere_init_options["routing_start_lat"] = {{ p_routing_start_lat }};{% endif %} {% if p_routing_end_lon %}chimere_init_options["routing_end_lon"] = {{ p_routing_end_lon }};{% endif %} {% if p_routing_end_lat %}chimere_init_options["routing_end_lat"] = {{ p_routing_end_lat }};{% endif %} + {% if p_routing_steps %}chimere_init_options["routing_steps_lonlat"] = [{{ p_routing_steps }}];{% endif %} chimere_init_options["icon_offset"] = new OpenLayers.Pixel({{icon_offset_x}}, {{icon_offset_y}}); chimere_init_options["dynamic_categories"] = {{ dynamic_categories }}; |