2
votes
0answers
378 views

Intersection problem: too many elements?

I have this code where an IGeometry shape (4-5 circles not filled) should be intersected with another layer's features // Convert from IGeometry to ADF Geometry Polygon ...
0
votes
1answer
300 views

Intersection failing because of vertices of polygons

I've written some code to intersect features of one layer with another's, but one layer has polygons (the squares in the image) and the other has circles (not filled). The problem is that I'm using ...
2
votes
1answer
157 views

How to display IGeometry?

I've done an intersection with the ITopologicalOperator6 interface, and I now have an IGeometry with the result. How to draw this in a graphics layer on the map? I want to see what was intersected ...
3
votes
1answer
331 views

ITopologicalOperator.Intersect, how does this work?

I'm trying to intersect all features of a layer with another's but I'm getting the web ADF application stuck while executing the "ConstructUnion" function Here's the code I've written so far // ...
6
votes
1answer
332 views

How to select all parcels of a street? [ArcGIS Server]

I have an Arcgis Server Map Service with a Street layer and a Parcel layer, I need to get the info of each parcel of a street that is selected by the user, does anyone knows how to do that? I'm a ...