Tagged Questions
4
votes
4answers
280 views
Using GIS / Map inside c# WPF
How could i create e mapping applications that displays a custom map from this URL:
(Capabilties with a mapview)
...
4
votes
1answer
481 views
I need help with saving Graphics to the a map
I have everything working just like I need it to, but when I add a new graphic to the map it does not save it. So I will add it, close the application, and when I reopen it the graphic is gone. I have ...
3
votes
1answer
219 views
Feature Layer is not showing the points on the map
I have a simple feature layer. The points will show up if I put the URL in a DynamicMapServiceLayer, but I need to use maptips, so that will not work. Below is my relevant XAML. If you need anymore ...
3
votes
1answer
726 views
How to make a WPF Window be a well-behaved child window of ArcMap?
I am pretty familiar with Windows Forms in ArcGIS but WPF, which I'm just starting to tinker with, seems to be a different animal. I've created an ArcMap add-in with a button that displays a Window ...
3
votes
1answer
435 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 ...
3
votes
1answer
187 views
Displaying information on a map using an InfoWindow
I am wanting to display information in an InfoWindow when the user clicks on a point on the map. I have implemented the InfoWindow in XAML, but I do not understand the code behind it. Any information ...
2
votes
2answers
1k views
ArcGis Engine, how to zoom&pan to selected objects?
I'm writing a program using ArcGis Engine, and need to zoom&pan into the map to show the selected content.
Loading and displaying the map does work using something like this:
AxMapControl ...
2
votes
4answers
252 views
Why does ITopologicalOperator2 .ConstructUnion produce a somehow invalid polygon?
I try to add a single buffer around the shape of the selected features. So I step through each selected feature and add it's shape to a GeometryBag. With ITopologicalOperator2.ConstructUnion I create ...
2
votes
1answer
535 views
ArcGis Engine, select object(s) by mouse
I've got a standalone program using ArcGis Engine, showing a map on the screen like this:
AxMapControl _mapControl;
AxToolbarControl _toolbarControl;
// in constructor:
_mapControl = new ...
2
votes
1answer
82 views
Using a map from ESRI Server in a radMap
I was wondering if there was a way to use a map that I have stored on an ESRI server in a telerik radMap. I am not very familiar with the radMap control so any help would be appreciated. I have found ...
2
votes
0answers
115 views
AxSymbologyControl via WindowsFormsHost in WPF (ArcMap Add In Project)
I need a way to offer the user a choice of color ramps for the ClassBreaksRenderer.
I came across the AxSymbologyControl which was designed for WinForms. I tried also ESRIs (WinForms) example project ...
2
votes
0answers
276 views
Using labels/attributes from arcMap to display information
I am wanting to take the labels/attributes that are used in arcMap and display them in an InfoWindow when the user clicks on the map point. I really have no idea where to start on this so any help ...
2
votes
0answers
68 views
Map Package is not showing points on map
I am fairly new to GIS, but I am working on an interactive legend and I need to just be able to add a map package to the xaml and it place the points on the map. The legend seems to be working. All of ...
2
votes
0answers
121 views
How can I free esriControls.ControlsSelectTool? Or is it leaking memory?
In my application I have isues with unfreed memory. After several tries I broke down the problem to a simplified WPF project. It opens a simple System.Windows.Window with a Button, which starts the ...
2
votes
0answers
320 views
Implementing custom IRenderer for ArcGis 10.0/WPF
EDIT: Updates in the bottom
As a followup to my earlier question, I'm trying to implement custom symbol rendering for my WPF/ArcGIS application.
I'm accessing layers that have been published on the ...