All Questions
72 questions
0
votes
1
answer
103
views
Why is every Attribut, except OBJECTID, from this ArcGIS Query returning null?
Im trying to build an App in android Studio with the ArcGis API. While building an Adapter I noticed, that all the Attributes, except "OBJECTID", is returning null, even though they actually ...
0
votes
1
answer
369
views
Am I running into a an ArcGIS SDK memory leak?
The Problem
I am building a GIS module for a system using ArcGIS Java Map SDK v200.0.0. The general functionality flow is, I connect to a few Esri servers, pull down some features/data using their ...
1
vote
0
answers
195
views
Android app crashes while loading an arcGIS map
I'm creating an android app, and I just want to load a map from my arcGIS online.
Here's the MainActivity class:
public class MainActivity extends AppCompatActivity {
private MapView mMapView;
...
1
vote
1
answer
6k
views
Error: (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64e')) Mac M1
Apologies for the question if it was answered, as I am a new to this platform. Can you refer me to the post if this question was answered before.
I am trying to implement https://github.com/Esri/java-...
0
votes
2
answers
194
views
Package com.esri.arcgisruntime.ogc.kml for Arcgis API of Java
I am currently working on a project where I have to convert my data into kml. So, I go through this java package com.esri.arcgisruntime.ogc.kml on the developers website of ESRI.
This package ...
0
votes
1
answer
1k
views
403 Forbidden when trying to install arcgis-java dependency with maven
I have followed the guide in https://developers.arcgis.com/java/latest/guide/get-the-sdk.htm but somehow I got this 404 forbidden error when trying to run mvn install to install the dependencies of my ...
0
votes
0
answers
1k
views
formula to convert X and Y coordinates to lat and long
I have a table called IK_TEMP and it contains columns called data, range .
String sql = "SELECT DATA, RANGE FROM IK_TEMP";
try (Connection conn = this.connect();
...
1
vote
0
answers
424
views
decode the blob geometry using java
In my table I have two columns, Data and Range.
Range field is encoded binary from ArcGIS.
this format is supposed to be a standard format with in the Geo spatial industry.
https://www.gaia-gis.it/...
3
votes
2
answers
1k
views
how to Convert X and Y to lat and long
I have a table called IK_TEMP and it contains columns called data, range .
String sql = "SELECT DATA, RANGE FROM IK_TEMP";
try (Connection conn = this.connect();
...
1
vote
1
answer
1k
views
JavascriptException in Selenium WebDriver
I tried to execute java script in selenium webdriver. The script is stored in a string variable. And variable is passed to exexuteScript() method. While running the script I got javascriptexception. ...
2
votes
2
answers
259
views
Is there any way we can get all the features of an ENC layer and toggle their visibility in java or .net ArcGIS SDKs?
I was looking for an way to get the list of all the features, from an ENC layer, while looking through coding samples I came across this.
In this sample code we have MapView.IdentifyLayersAsync and ...
3
votes
1
answer
3k
views
How to make changes in Java classes of a jar file
Issue
I have arcGIS jar file integrated into one of my Android projects and want to make some modifications in the java classes within the jar file. I modified the jar using the decompiler tool Jd-...
0
votes
1
answer
76
views
How can I measure the minimum distance between a pointGraphicOverlay to a tortuous lineGraphicOverlay in ArcGIS for Android?
I want to measure the minimum distance between a point Graphic overlay to a tortuous line Graphic overlay which get from a set of points.I know how to measure distance between point to point ,but I ...
1
vote
1
answer
104
views
Geotools ViewType on GridCoverage2D
I am currently updating our projects Geotools jars from 10.8 to RC 21. I've run into an issue where in the coverage jar(gt-coverage-21-RC.jar) the ViewType class no longer exists. Also the code that ...
0
votes
0
answers
486
views
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 ...