What does visualintersect in GetFeatures do?

672
2
Jump to solution
05-10-2019 07:22 PM
TimWhiteaker
Occasional Contributor II

According to the docs, the visualintersect argument of the GetFeatures method Indicates whether only features that visibly intersect the geometry should be returned.

What does "visibly intersect" mean? Is there a difference between visibly intersecting something and actually intersecting something?

0 Kudos
1 Solution

Accepted Solutions
TimWhiteaker
Occasional Contributor II

A visualintersect value of true means the symbol used for the feature is taken into account. So for example if you represented a city (point feature class) with a point symbol consisting of a large circle that is 100 pixels across in screen units, then if the search geometry intersects that circle (as if the circle were a polygon feature in the map), then that city feature will be returned even if the search geometry doesn't actually intersect the city's latitude and longitude point coordinates.  At least that's what I have determined based on experimentation.

View solution in original post

0 Kudos
2 Replies
TimWhiteaker
Occasional Contributor II

A visualintersect value of true means the symbol used for the feature is taken into account. So for example if you represented a city (point feature class) with a point symbol consisting of a large circle that is 100 pixels across in screen units, then if the search geometry intersects that circle (as if the circle were a polygon feature in the map), then that city feature will be returned even if the search geometry doesn't actually intersect the city's latitude and longitude point coordinates.  At least that's what I have determined based on experimentation.

0 Kudos
ThomasEmge
Esri Contributor

It becomes even more evident if you think about it in a 3D context. Imagine that you have building footprints that are extruded by an attribute and you do the selection in screen coordinates. The building geometry itself is only 2D on the ground and only the layer visual representation is in 3D. This combination can make the selection tricky as well and hence the argument.

0 Kudos