Skip to content

Commit

Permalink
split bbox once, as suggested by @tomkralidis
Browse files Browse the repository at this point in the history
  • Loading branch information
pvgenuchten committed Sep 29, 2024
1 parent 43834c0 commit d550294
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions pycsw/ogc/api/templates/items.html
Original file line number Diff line number Diff line change
Expand Up @@ -211,14 +211,16 @@
function facet(val){
location.href="{{updateurl('facets','facetprop')}}".replace('facetprop',val);
}

//if url has a bbox, enable the spatial filter
{% if 'bbox' in attrs.keys() and (attrs['bbox'].split('%2C')|length) == 4 %}
var bbox = [
[{{ attrs['bbox'].split('%2C')[1] }}, {{ attrs['bbox'].split('%2C')[0] }}],
[{{ attrs['bbox'].split('%2C')[3] }}, {{ attrs['bbox'].split('%2C')[2] }}]
]
{% else %}
var bbox = null;
var bbox;
{% if 'bbox' in attrs.keys() %}
{% set bbox_tokens = attrs['bbox'].split('%2C') %}
{% if bbox_tokens|length == 4 %}
bbox = [[{{
bbox_tokens[1] }}, {{ bbox_tokens[0] }}], [{{
bbox_tokens[3] }}, {{ bbox_tokens[2] }}]];
{% endif %}
{% endif %}

//if filter enabled, apply the spatial filter
Expand Down

0 comments on commit d550294

Please sign in to comment.