Skip to content

Commit

Permalink
Do not allow to click outside
Browse files Browse the repository at this point in the history
  • Loading branch information
rmichaelis committed Jul 12, 2024
1 parent e442901 commit 5bc74f5
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions geoportal/geoportailv3_geoportal/views/getfeatureinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,21 +356,33 @@ def get_info(self, fid, coordinates_big_box, coordinates_small_box,
coords = box2.split(',')
the_box = box(float(coords[0]), float(coords[1]),
float(coords[2]), float(coords[3]))

geometry = geojson_loads(geojson.dumps(mapping(the_box.centroid)))
f = self.to_feature(luxgetfeaturedefinition.layer, None,
geometry,
[],
[],
None)

features = self._get_external_data(
luxgetfeaturedefinition.layer,
luxgetfeaturedefinition.rest_url,
None,
None, None, None, None,
None,
use_auth=luxgetfeaturedefinition.use_auth,
p_geometry=the_box.centroid.wkt, srs_geometry="2169")
f = []
if len(features) > 0:
f = [self.to_feature(luxgetfeaturedefinition.layer, None,
geometry,
[],
[],
None)]
results.append(
self.to_featureinfo(
[f],
f,
luxgetfeaturedefinition.layer,
luxgetfeaturedefinition.template,
is_ordered,
luxgetfeaturedefinition.has_profile,
luxgetfeaturedefinition.remote_template,
1))
len(f)))
continue
if (luxgetfeaturedefinition is not None and
luxgetfeaturedefinition.engine_gfi is not None and
Expand Down

0 comments on commit 5bc74f5

Please sign in to comment.