Questions tagged [arcgis-runtime]

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.

161 questions
0
votes
0 answers

Field of view (FOV) of the Camera in the SceneView - ArcGIS Java runtime SDK

I'm trying to set the 3D Camera of the SceneView in the Java SDK and I cannot find a "field of view" / "angle of view" member. I was wondering how the camera's field of view is being set, since I need a way to change it according to the horizontal…
user10544496
0
votes
1 answer

How to reduce size of app with arcgis dependency?

I'm starting to work on an iOS app, which should use ArcGIS. I've added a hello world style (1 screen, 1 map without any extra stuff) basic implementation, and now my app size is trough the roof. I've followed this tutorial for the setup. A…
Tamás
  • 19
  • 1
  • 6
0
votes
1 answer

ArcGIS version 100.3.0 android token

Below is the code I'm using for setting user credentials on ServiceFeatureTable. ServiceFeatureTable featureTablePolygons = new ServiceFeatureTable(polygonUrl); featureTablePolygons.setCredential(UserCredential.createFromToken(gisToken,…
Manoj
  • 1
  • 1
0
votes
1 answer

feature label is not showing ArcGis 10.2

I have my app configured with arcgis version 10.2 and 100.2. I have a feature layer in that every feature has a label for its code to display. What happening hear is in arcgis 10.2 only the feature is displaying but the label doesnot display and on…
Parv Bhasker
  • 1,773
  • 1
  • 20
  • 39
0
votes
1 answer

ArcGISRuntime 100.0 What methods for coordinate conversion

I'm using ArcGISRuntime 100.0 with Qt (linux) and I'm looking for helper classes that provide conversions between DMS / DD and possible toScreenCoords etc. Do these exist ? thanks.
Gav_at_HRSTS
  • 179
  • 2
  • 11
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
0 answers

Pick up points from the map and store the coordinates in the database, but some points are not GPS coordinates

The function is to select points from the map and store the co-ordinates of the points in the database. This is normal: But there are some special cases, I don't know what caused it: I don't know why this happened, please help me. Thanks. The…
张俊鹏
  • 1
  • 1
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
2 answers

layer name is different in ArcGis Runtime 100

I just updated my ArcGis sdk to use sdk version 100.2.1. Previously to get the layer name I was using AGSFeatureLayer *featureLayer = (AGSFeatureLayer *) layer; layerName = featureLayer.serviceLayerName and now In the sdk 100.2.1 there is no…
Parv Bhasker
  • 1,773
  • 1
  • 20
  • 39
0
votes
1 answer

How to show or hide AGSArcGISMapImageLayer sublayers

I just upgraded my project from arcgis runtime 10.2 to 100.2.1 and I was able to run the AGSFeature Layers but AGSArcGISMapImageLayer are giving issues I am just loading the AGSArcGISMapImageLayer layer which contain sublayers and getting their data…
Parv Bhasker
  • 1,773
  • 1
  • 20
  • 39
0
votes
1 answer

initiaize object of AGSGeodatabase with file path is returning "File not found

I want to post this question on esri community, but I was not able to login there. I created the offline geo database and showing the layers from it to the map. My issue is when i download the geoDatabse and show the data from it is working fine for…
Parv Bhasker
  • 1,773
  • 1
  • 20
  • 39
0
votes
1 answer

how to replace layer url with portalItem for offline Arcgis runtime sdk

I am trying to gave offline access to my app. I am using ArcGis runtime 100 sdk. while implementing the same I found //instantiate offline map task self.offlineMapTask = AGSOfflineMapTask(portalItem: self.portalItem) this code of line to start…
Parv Bhasker
  • 1,773
  • 1
  • 20
  • 39
0
votes
1 answer

AGSFeature.attributes of ArcGIS Runtime 100 now giving parameters in its dictionary

I am sending a query of geometry to show the features selected on map and get the selected features. Both the things are working okay but when i check the attribute dictionary of a feature it contains only 5 key/value pair but the same function in…
Parv Bhasker
  • 1,773
  • 1
  • 20
  • 39
0
votes
0 answers

How to create offline route in ArcGIS sdk version 100.2.1

I get this error while accessing from local database: E/RoutingActivity: com.esri.arcgisruntime.ArcGISRuntimeException: Cannot call this method in this context How to create offline route in ArcGIS sdk version 100.2.1? All examples are given in…