|
POST
|
I believe your data is coming in through: @Override
public void onMessage(String s) So use the s variable to pass that along to geometry. Ensure that the s variable is properly formatted to be handled by the geometry object otherwise, you will not see the results you expect.
... View more
06-08-2017
06:23 AM
|
0
|
2
|
1479
|
|
POST
|
From the way the answer was written, it may be a device to device detail. Android versions not relevant in this case.
... View more
06-06-2017
07:51 AM
|
0
|
0
|
2752
|
|
POST
|
I was able to load : https://api.proclass.nl/arcgis/rest/services/ATP_BuildingLayouts/ATP_BuildingLayouts/MapServer on Android using the following snippet: public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
MapView mapView = (MapView) findViewById(R.id.map);
mapView.addLayer(new ArcGISDynamicMapServiceLayer("https://api.proclass.nl/arcgis/rest/services/ATP_BuildingLayouts/ATP_BuildingLayouts/MapServer"));
}
} No error was propagated and the layer loaded fine.
... View more
06-05-2017
09:04 AM
|
2
|
2
|
9360
|
|
POST
|
I see that error as well. I am also having trouble loading these features in ArcGIS Online Map Viewer or in the ArcGIS Javascript viewer. Are you facing similar issues there?
... View more
06-05-2017
07:23 AM
|
0
|
4
|
9360
|
|
POST
|
From this post: Error createContext failed: EGL_SUCCESS when under Android 4.2.2 application is started It looks to be a known issue: This is a known issue for this release that has not found its way into the release notes yet, we will update the release notes soon. The issue is that some devices do not correctly report their OpenGL configurations to allow us to create our OpenGL context. We need to be specific in creating the OpenGL context to allow many of our map rendering features to work properly (particularly for things like Vector Tiled Layers). We have implemented a solution which works on most devices, but it will still be problematic on some, especially older devices running older versions of Android.
... View more
06-05-2017
07:13 AM
|
0
|
2
|
2752
|
|
POST
|
Which version of the runtime are you using? What is the data type of this object : "map"? Is this the URL that you are trying to view: http://api.proclass.nl/arcgis/rest/services/Handmatig_Toegevoegd/Handmatig_Toegevoegd/MapServer ?
... View more
06-05-2017
05:59 AM
|
0
|
6
|
9360
|
|
POST
|
Hi John Mcoy, I've seen similar issues before. My assumption is that you are using a 64 bit library with the 32 bit libraries that ArcGIS Runtime ships with. https://corbt.com/posts/2015/09/18/mixing-32-and-64bit-dependencies-in-android.html I believe that you need to target the 32 bit libraries of the other dependencies that are included within your application rather than just the 64 bit libraries.
... View more
06-05-2017
05:56 AM
|
0
|
3
|
2752
|
|
POST
|
Here is the sample of the local geofence built by Dan O'Neill https://github.com/Esri/arcgis-runtime-demos-android/tree/master/2016-DS/LocalGeofence
... View more
06-02-2017
10:38 AM
|
0
|
2
|
2125
|
|
POST
|
In regards to moving points from Stream Service layer, do you mean to another layer type? This might be better handled by the GeoEvent community. Someone in Esri created a sample for this. I will have to see if I can find it. This could be used to track a persons location passively. It will only retrieve their location when another app requests it. As a warning, this has not been optimized for Android O which requires that a notification be present in the notification bar to let the user know their location is being tracked. developer-support/runtime-android/passive-location-retrieval at master · Esri/developer-support · GitHub
... View more
06-02-2017
06:33 AM
|
2
|
0
|
2125
|
|
POST
|
I don't believe Stream services have been implemented at this time. You may want to reach out to your local Esri distributor and ask for an enhancement request to include stream services in a future release.
... View more
06-01-2017
09:55 AM
|
0
|
0
|
774
|
|
POST
|
Placing that info in the headers of the request configuration will not get you the output you seek as this would modify every header that you send to ArcGIS Online. Instead, I encourage you to look at the GenerateGeodatabaseParameters since this will allow you to modify the arguments through class methods: GenerateGeodatabaseParameters| arcgis-android
... View more
05-31-2017
07:46 AM
|
0
|
1
|
1751
|
|
POST
|
Environment.getExternalStorageDirectory() is one trick that comes to mind. These documents may help you: Environment | Android Developers android - Find an external SD card location - Stack Overflow I would also encourage you to implement a file picker so the SD file card path does not have to be exact. One file picker that comes to mind is this one: GitHub - spacecowboy/NoNonsense-FilePicker: A file/directory-picker for android. Implemented as a library project. There are many more open source file pickers out there which may be better suited for your needs. Use that library at your own risk. Esri has not evaluated nor tested this file picker and cannot guarantee the safety or security of this library.
... View more
05-30-2017
10:25 AM
|
0
|
0
|
2373
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-15-2014 03:16 PM | |
| 1 | 01-06-2015 03:33 PM | |
| 1 | 12-02-2014 10:47 AM | |
| 1 | 07-15-2014 03:31 PM | |
| 1 | 09-23-2014 03:59 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:24 AM
|