Tagged Questions
2
votes
1answer
123 views
How to split zAware polyline by points programmatically with C#?
I'm trying to split a polyline by the boundaries of a polygon using IPolyCurve2.SplitAtPoints using C#.
The polyline I'm trying to split is zAware and holds elevation values at a regular interval.
...
1
vote
1answer
1k views
ArcGIS API for Silverlight - pass geometries to ESRI service
How would I test this service to find what it wants? ...
4
votes
1answer
1k views
Geometry from multiple selected features into one geometry
Lets see if I can explain what I'm trying to do. First of all I have developed an AddIn for ArcMap that can take one selected feature (Polygon) on a layer, grab the geometry of that feature, and save ...
3
votes
2answers
476 views
Way to Ensure that the Image Centroid is Within Image Bounds
My application uses the ArcGIS Silverlight API to select polygons from a map layer. It uses the Geometry.Extent.GetCenter() method to get the centroid of the shape and add a thumbtack image at those ...
3
votes
1answer
430 views
Is it possible to figure out which “Path”(PointCollection) is clicked on within a PolyLine?
I am using ArcGIS WPF's Polyline to plot several lines (PointCollections). Adding a Path(PointCollection) looks something like this.
PointCollection collection = new PointCollection();
PolyLine ...