Questions tagged [arcgis-runtime-net]

76 questions
0
votes
1 answer

How to show feature information on map MouseMove event without any blinking?

I am trying to show a selected feature information in a popup using ShowCalloutAt API function on mousemove event. using below code: public class TestMouseMove { public TestMouseMove(MapView mapView) { mapView.MouseMove+=MouseMove_Event; …
Parashuram
  • 303
  • 2
  • 6
  • 19
0
votes
1 answer

How to save user drawn layers into files(.shp or .tiff)?

I am developing a wpf gis application using arcgis runtime sdk. In my application user can define FeatureCollectionTable schema and draw features(such as polyline,polygon,point and etc) on map. Now, I need to save this user drawn feature layer as a…
Parashuram
  • 303
  • 2
  • 6
  • 19
0
votes
1 answer

How to resolve runtime exception The invocation of the constructor on type 'Esri.ArcGISRuntime.UI.Controls.MapView'

I was developing a GIS Windows Forms application using ArcGISRuntime SDK(version 100.4.0) in Visual Studio 2015. When I deploy the application exe in deployment machine(windows 10 machine with no visual studio environment) application worked…
Parashuram
  • 303
  • 2
  • 6
  • 19
0
votes
2 answers

Determine points that are under a sketchOverlay in a map

I have a map which has a GraphicsOverlay with various points. I have given the user the ability to select a subset of the points by drawing a polygon using the SketchEditor. How can I determine which points have been selected? Here is a subset of…
Richard
  • 125
  • 1
  • 9
0
votes
1 answer

"MapView not found in Esri.ArcGISRuntime.Xamarin.Forms" error Xamarin Forms iOS

I am using ArcGIS Runtime 100.4.0 in my Xamarin forms solution which is consist of Android Project iOS .Net Standard 2 project (shared logic used by android and ios) My code is very simple and it only tries to display a map. I used the code from…
0
votes
1 answer

Why ArcGIS Runtime SDK for .Net sync geodatabase exception throw ""

I am working add feature to feature service as offline. My feature service is editable. I created a geodatabase and added a feature to it. I can see my feature I added in geodatabase. However, when I synchronize geodatabase with feature service, I…
0
votes
1 answer

VB script error in ArcGIS 10.2, error '13', Type mismatch, when using Application

The original question was posted on question link Error occurs at the yellow highlighted line. However such syntax seems to be correct in ArcGIS developer guide see page 163 Many thanks if someone can resolve this.
Justin
  • 327
  • 3
  • 13
0
votes
1 answer

MapView control from Arcgis portal

I am developing a wpf application with arcgis runtime sdk for .net 100.2.1. I have a MapView control on a page and it's working fine. The namespace of MapView control is xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013". My company has a…
0
votes
1 answer

Expose XAML Element to ViewModel to run methods Xamarin Forms

I need to be able to run methods on a XAML element in my ViewModel, I have 3 files - DataPrepPage.cs, DataPrepPage.xaml and DataPrepViewModel.cs. In my XAML(DataPrepPage.xaml) page I have the element like this:
Alex J
  • 5
  • 3
0
votes
1 answer

ArcGIS Runtime SDK Debug Display

I am developing an app using the ArcGIS Runtime SDK for .NET in Visual Studio Community 2017, currently set to Debug configuration. There are these two black boxes/squares with numbers in them, one floats top left of the app window and another one…
0
votes
1 answer

Arcgis UWP Obtain geolocation from pointerpressed event

I am new to working with the Arcgis Runtime SDK for UWP. I was wondering if anybody knewof a way to use the pointerpressed event handler to obtain the latitude and longitude coordinates of that click on the map.
kdun0508
  • 75
  • 10
0
votes
1 answer

Open mobile map (.mmpk) example not compile: DataManager does not exist

I am trying this 'open mobile map' example using .mmpk, and uesed code under the 'Forms' tag of this web link: OpenMobileMap,Forms tab However the code behind does not compile. I got error: 'DataManager does not exist in the current context'. Any…
0
votes
2 answers

ArcGis Offline map layer changes synchronization

In my WPF application I’m trying to use off-line map functionality. Right now my feature service is configured for data sync and I’m able to create data replica on server and download local copy of geodatabase. gdbSyncTask = await…
Piotr Gaszewski
  • 343
  • 3
  • 15
0
votes
1 answer

C#, How to configure LocalServer in ArcGISRuntimeSDK

I've tried every possible solution that crossed my mind. I keep getting: System.InvalidOperationException: 'LocalServer start failed: executable not found. When I call: Esri.ArcGISRuntime.LocalServices.LocalServerEnvironment.Initialize(); I…
0
votes
2 answers

Cannot load map package using ArcGIS Runtime .Net for WPF local service

I am trying to load a local map package to the main window using ArcGIS Runtime .Net for WPF (Version 100.1). But somehow the local server cannot find layers in the map package. Here's my script: public MainWindow() { …
TTTZ
  • 11
  • 1