首页 / 浏览问题 / WebGIS / 问题详情
基于wfs1.0.0,通过filter方法筛选与框选面相交的要素,参数要如何拼接
1EXP 2021年04月28日
Intersects

1个回答

865EXP 2021年04月28日

使用Intersects所查询的数据与实际情况不符

原数据

框选面:

查询结果示例图

代码示例:

(<Filter xmlns:gml="http://www.opengis.net/gml" xmlns="http://www.opengis.net/ogc">

<Intersects>

<PropertyName>the_geom</PropertyName>

<gml:Polygon>

<gml:outerBoundaryIs>

<gml:LinearRing>

<gml:coordinates>116.34196675039216,25.831616875136913 116.34241199708863,25.831616875136913 116.34241199708863,25.83190118929249 116.34196675039216,25.83190118929249 116.34196675039216,25.831616875136913</gml:coordinates>

</gml:LinearRing>

</gml:outerBoundaryIs>

</gml:Polygon>

</Intersects>

</Filter>)

已找到问题,多谢
...