0

I have a ArcGIS runtime map setup in my mobile app for both android and ios. Now, I have some viewpoints listing which I want to check if exist on some particular map area i.e. some specific Map Extent/Envelope/Geometry.

Is there any way we can implement this functionality?

Please help me out!!!

1 Answers1

0

You can use AGSGeometryEngine's geometry:intersectsGeometry:() function to check whether viewpoint's geometry intersects with the specific map extent/envelope/geometry or not.

Hope this helps!

Regards, Nimesh

  • I would add that there are numerous geometry relationship functions on GeometryEngine which tell you how one geometry relates to another. There's some good conceptual doc on this here: http://esri.github.io/geometry-api-java/doc/RelationalOperators.html – Nixta Feb 06 '20 at 18:32