ArcGIS Runtime SDKs help you build and deploy native applications to a variety of popular platforms and devices like Android, iOS, Java, .Net, OS X, Qt.
Questions tagged [arcgis-runtime]
161 questions
0
votes
3 answers
How to disable map in arcgis javascript
I am new to arcgis javascript. I have created street map in arcgis javascript and also added graphics into that map.I want to disable that map not the graphics on that map.How can I do it?
Example-
I have added a basemap which has type of street and…

Pallavi
- 9
- 3
0
votes
2 answers
ArcGIS iOS Map does not pan or zoom
I am walking through the basic iOS guide to add a map to my App here: https://developers.arcgis.com/ios/10-2/swift/guide/develop-your-first-map-app.htm
When running the app, it displays the basemap I have added but it does not seem to respond to any…

Nate23VT
- 423
- 8
- 27
0
votes
2 answers
ARCGIS Runtime for .NET: Why am I getting System.ArgumentException 'An item with the same key has already been added'?
How can I diagnose the above exception? In my code, I roughly do the following:
Create an overlay ( overlay = new GraphicsOverlay() )
Create a set of polygons ( poly = new Polygon(mappoints) where mappoints is a PointCollection)
Create a graphic…

David Hope
- 2,216
- 16
- 32
0
votes
2 answers
Error in Grizzly HTTP Server (Jersey) when incorporating ArcGIS Runtime SDK for Java
I followed the guide here to create a new Jersey HTTP server from Maven Archetype. Everything is fine, the resource returns the string as expected, here is the resource:
package com.example;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import…

Khoi Boo
- 45
- 6
0
votes
1 answer
Wrapping ArcGIS Map into ItemsControl (ItemsControlProxy)
I need to bind an ArcGIS Map from the ArcGIS Runtime SDK for .NET to a view model which provides a collection of custom models which represent the data of the individual ArcGIS Layers (used for serialization purposes). Now since ArcGIS is not really…

artganify
- 683
- 1
- 8
- 23
0
votes
1 answer
Symbol does not show up on ArcGIS Map using Qt
I am using Qt together with the ArcGIS api and I want to display a military symbol using the MessageHelper class. Here is my code:
m_map = new EsriRuntimeQt::Map(this);
m_mapGraphicsView = EsriRuntimeQt::MapGraphicsView::create(m_map,…

M F
- 323
- 1
- 3
- 15
0
votes
1 answer
Copy TPK file from AppGroup Container to Documents
I have a file that exists within the AppGroup Shared Container and I was wondering if it was possible to copy the file from the Shared Container into the application bundle.
I am getting the file path as follows :
let filePath =…

Nate23VT
- 423
- 8
- 27
0
votes
1 answer
Large Polygon renders incorrectly
I'm using the ArcGIS Runtime .NET Quartz Beta
I have an application which needs to render large polygons on the 3D Scene View.
For instance, I execute this code:
var ContourOverlayScene = CreateGraphicsOverlay("Contours");
…

David Hope
- 2,216
- 16
- 32
0
votes
0 answers
QtPositioning on Windows 8.1,
I am working on a application using QML, QT Creator, and the Arcgis QML SDK. I am trying to get the application to find and read the GPS on windows 8.1 devices(Toughpad FZ-G1), but am struggling to find out how. My application will show a position…
0
votes
0 answers
Object reference not set to an instance of an object in instance of mapView
I initialize this as _mapView = Globals.AppMainMapView; at constructor
Error occurred here when I use _mapView :
if (_mapView.Editor.Cancel.CanExecute(null))
{
_mapView.Editor.Cancel.Execute(null);
}

Menna Elrefay
- 111
- 1
- 9
0
votes
1 answer
Add some controls like Textblock as ItemSource in C# code behind
I have ArcGIS Windows Runtime Esri project and my XAML is like this:

Kishor Bikram Oli
- 1,748
- 1
- 22
- 40
0
votes
1 answer
Arcgis MapView: couldn't find "libruntimecore_java.so"
Arcgis MapView provides error on some devices(I believe 64-bit) while inflating MapView.
Error starts with
Binary XML file line #13: Binary XML file line #13: Error inflating class com.esri.android.map.MapView
and in the last line:…

Sharjeel
- 15,588
- 14
- 58
- 89
0
votes
1 answer
Get GPS Coordinates on mouse tap/click on ArcGIS Esri Map in Windows Runtime Apps (Windows 8.1)
How to get the GPS coordinates (longitude, latitude) of the clicked/tapped point in ArcGIS Esri map?
I tried MapViewTapped event like:
private void myMapView_MapViewTapped(object sender, MapViewInputEventAtgs e)
{
var x = e.Position.X;…

Kishor Bikram Oli
- 1,748
- 1
- 22
- 40
0
votes
1 answer
ARCGIS Runtime for .NET How to set background color for Text Symbol in SceneView
My code looks like this:
TextSymbol ts = new TextSymbol()
{
Font = new SymbolFont("Arial", 18),
BackgroundColor = Color.FromArgb(160, 255, 255, 255),
HorizontalTextAlignment =…

David Hope
- 2,216
- 16
- 32
-1
votes
1 answer
How to solve template error in Arcgis AR for iOS
I am trying to create an AR App for navigation, so i downloaded the templates suggested by arcgis for that, while there were no errors in xamarin.forms there are lot of namespace errors in xamarin.ios where i wanted to build my app, the errors are…

H99C
- 13
- 4