All Questions
19 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
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 ...
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. ...
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-...
1
vote
0
answers
82
views
Arcgis split(Cut) feature sample codes in Android sdk
I am developing a mobile application in Android Studio. And here I need to cut a polygon or line features in Arcgis, I came to know that cut(Geometry geometry, Polyline cutter) method is used to cut a ...
2
votes
0
answers
432
views
Java arcgis get intersection points of polylines
I want to draw points there poly-lines intersects in arcgis using arcgis java apie from esri.
I have written such code which checks whether to lines intersects
Polyline polyline = new Polyline();
...
49
votes
3
answers
52k
views
Android - Expected Resource of type ID
I have this code
final static int TITLE_ID = 1;
final static int REVIEW_ID = 2;
Now, I want to create a new layout in my main class
public View createContent() {
// create linear layout for the ...
0
votes
1
answer
838
views
Android-Java Point(android.graphics.point) in Point cannot be applied to (Double, Double)
I am using ArcGis solution to get current location of the user. Whenever I want to getLongitude and getLatitude it gives an error that point cannot be converted to Double.
How to solve this problem?
...
2
votes
0
answers
291
views
How to add a field to a FeatureLayer?
I'm trying to add a field to a FeatureLayer, this is the code I'm using to do this:
IMxDocument mxd = (IMxDocument) app.getDocument();
FeatureLayer flayer = ((FeatureLayer)mxd.getSelectedLayer());
...
1
vote
1
answer
215
views
Map on click to get multiple coordinates
I was having some problem when trying to plot two markers on the map and get the start and end coordinates. Here is the code:
function showBusFilter(){
map.on("click", function (evt) {
var ...
0
votes
1
answer
600
views
Android Studios not recognizing the asset file that I added
Android Studios 1.0
I have added a file int the app/src/main/assets folder in Android Studios but it still keeps throwing a
unreported exception FileNotFoundException; must be caught or declared to ...
0
votes
1
answer
294
views
Arcgis Map : Get Current Location Error , Not displaying my current location
Hie,
I tried this sample code that one of the person who gave me this in my other question in stack overflow. I tried using this code but when i run the applicationn, it doesnt locate my current ...
0
votes
2
answers
3k
views
Arcgis map : How to get and display Current location (Android )
Does anyone know how to get current location on one map. after getting your current location , it will display a dot or whatsoever on the map telling the user that he or she is at a location which the ...
1
vote
2
answers
3k
views
Arcgis Map : PictureMarkerSymbol
Hie everybody, i am trying to make a PictureSymbolMarker in my arcgis map..
However i am facing some problems in it. i went to esri website [ http://blogs.esri.com/esri/arcgis/2012/02/03/esri-...
0
votes
1
answer
670
views
Arcgis: multiple pins on map
Hie,
I would like to put multiple pins on the map. Currently, I have one pin displayed on map. I tried writing more than one location name but it loads only one location ..
This is my code.
public ...