diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/base/around/_error_multiple.html | 2 | ||||
-rw-r--r-- | templates/web/base/maps/google.html | 2 | ||||
-rw-r--r-- | templates/web/base/maps/openlayers.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/web/base/around/_error_multiple.html b/templates/web/base/around/_error_multiple.html index 6a43eac32..34164973a 100644 --- a/templates/web/base/around/_error_multiple.html +++ b/templates/web/base/around/_error_multiple.html @@ -10,7 +10,7 @@ [% IF match.icon %] <img src="[% match.icon %]" alt=""> [% END %] - <a href="/around?latitude=[% match.latitude | uri %];longitude=[% match.longitude | uri %][% IF c.req.params.category %];category=[% c.req.params.category | uri %][% END %]">[% match.address | html %]</a> + <a href="/around?lat=[% match.latitude | uri %]&lon=[% match.longitude | uri %][% IF c.req.params.category %]&category=[% c.req.params.category | uri %][% END %]">[% match.address | html %]</a> </li> [% END %] </ul> diff --git a/templates/web/base/maps/google.html b/templates/web/base/maps/google.html index e8c07b113..eaa462c6c 100644 --- a/templates/web/base/maps/google.html +++ b/templates/web/base/maps/google.html @@ -14,7 +14,7 @@ $.extend(fixmystreet, { 'area': [ [% map.area.join(',') %] ], 'latitude': [% map.latitude %], 'longitude': [% map.longitude %], -[% IF map.any_zoom -%] +[% IF map.zoomToBounds -%] 'zoomToBounds': 1, [%- END %] [% IF map.zoom -%] diff --git a/templates/web/base/maps/openlayers.html b/templates/web/base/maps/openlayers.html index 524075371..2f748cb19 100644 --- a/templates/web/base/maps/openlayers.html +++ b/templates/web/base/maps/openlayers.html @@ -11,7 +11,7 @@ [%- END %] data-latitude=[% map.latitude %] data-longitude=[% map.longitude %] -[% IF map.any_zoom -%] +[% IF map.zoomToBounds -%] data-zoomToBounds=1 [%- END %] [% IF map.zoom -%] |