|
POST
|
Michael, Please have a look at the doc for the REST API: http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#//02r30000025t000000 A note in there mentions that you should: enable "Allow Clients to Export Cache Tiles" in advanced caching page of the Service Editor. Please let me know of this was helpful.
... View more
04-10-2014
01:04 PM
|
0
|
0
|
1332
|
|
POST
|
Hi When I look at the rest endpoint for the Wildfire feature service: http://services.arcgis.com/P3ePLMYs2RVChkJx/arcgis/rest/services/Wildfire/FeatureServer And scroll all the way to the bottom, I can see the Sync and Replica Operations are available: Supported Operations: Query Apply Edits Create Replica Synchronize Replica Unregister Replica The other feature services you mention only show Query and Apply Edits. Supported Operations: Query Apply Edits Please have a look at this Guide topic Create and Offline map: https://developers.arcgis.com/android/guide/create-an-offline-map.htm One of its topics describes 'a sync-enabled feature service' and creating one. Please let me know if this helps get you any closer to solving the issue.
... View more
04-10-2014
12:33 PM
|
0
|
0
|
616
|
|
POST
|
Hi Gina, Just a followup. Since you say that you are looking in MyContent and you can see your service listed there, can have a look at the other columns that describe that service, like Type and Shared. For Shared it could be Not Shared, Shared with Everyone, or shared with a specific group. Is your's Everyone? For Type, does it show up as a Feature Service, Tiled Map Service, Web Map? If it's a FeatureService you may need to use a class besides ArcGISDynamicMapServiceLayer. You also mentioned a sample, the Attribute Editor: https://developers.arcgis.com/android/sample-code/attribute-editor/ Check out the sample code, copied and pasted below. See how their ArcGISDynamicMapServiceLayer (first bit of code below) points to a MapServer/Map service? And then the second bit of code points to a FeatureServer/Feature Service. If the Item in Your Content is a Feature Service, you should use the ArcGISFeatureLayer class instead of ArcGISDynamicMapServiceLayer. dmsl = new ArcGISDynamicMapServiceLayer("http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Petroleum/KSFields/MapServer"); mapView.addLayer(dmsl); featureLayer = new ArcGISFeatureLayer( "http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Petroleum/KSFields/FeatureServer/0", MODE.SELECTION); setContentView(mapView); If you could share the URL to your service and the bit of code where you instantiate the class, it would be helpful. I hope this helps in some way.
... View more
04-10-2014
12:14 PM
|
0
|
0
|
2050
|
|
POST
|
You might try setting the RAM to 512. And have a look at the 5 steps in this other posting: http://forums.arcgis.com/threads/99926-unfortunately-HelloWorld-has-stoped?p=367162#post367162 Please let us know if it works!
... View more
02-20-2014
12:40 PM
|
0
|
0
|
1377
|
|
POST
|
Please could you share the contents of your Console window too? Here is what mine looks like after a successful launch. [2014-02-19 13:58:36 - HelloWorld] ------------------------------ [2014-02-19 13:58:36 - HelloWorld] Android Launch! [2014-02-19 13:58:36 - HelloWorld] adb is running normally. [2014-02-19 13:58:36 - HelloWorld] Performing com.esri.arcgis.android.samples.helloworld.HelloWorld activity launch [2014-02-19 13:59:01 - HelloWorld] Launching a new emulator with Virtual Device 'Nexus7Haxm' [2014-02-19 13:59:05 - Emulator] emulator: device fd:880 [2014-02-19 13:59:05 - Emulator] [2014-02-19 13:59:05 - Emulator] HAX is working and emulator runs in fast virt mode [2014-02-19 13:59:07 - Emulator] creating window 0 0 608 972 [2014-02-19 13:59:07 - HelloWorld] New emulator found: emulator-5554 [2014-02-19 13:59:07 - HelloWorld] Waiting for HOME ('android.process.acore') to be launched... [2014-02-19 13:59:37 - HelloWorld] HOME is up on device 'emulator-5554' [2014-02-19 13:59:37 - HelloWorld] Uploading HelloWorld.apk onto device 'emulator-5554' [2014-02-19 14:00:00 - HelloWorld] Installing HelloWorld.apk... [2014-02-19 14:00:05 - HelloWorld] Success! [2014-02-19 14:00:05 - HelloWorld] Starting activity com.esri.arcgis.android.samples.helloworld.HelloWorld on device emulator-5554 [2014-02-19 14:00:05 - HelloWorld] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.esri.arcgis.android.samples.helloworld/.HelloWorld }
... View more
02-19-2014
12:01 PM
|
0
|
0
|
1377
|
|
POST
|
Hi Krishna, The idea behind an ArcGISFeatureLayer is to work with a single layer at a time. When defining the Feature_Service_url you have a /1 or /0 at the end. Where that number defines the index position of the desired layer from the FeatureServer. If you would like to work with all the layers from a service at one time, instead FeatureService, use a MapService. Also with a map service you wouldn't place the /1 or layer index at the end of the URL. For this option have a look at ArcGISDynamicMapServiceLayer. Here is a brief help page describing the variety of layers. https://developers.arcgis.com/android/guide/map-layer-types.htm I hope this is helpful.
... View more
02-19-2014
11:53 AM
|
0
|
0
|
665
|
|
POST
|
Hi Cepheus, Is this the resource/help page you are referring to? https://developers.arcgis.com/android/guide/search-for-places.htm And is this the topic in question: Creating a Local Locator (BETA)
... View more
02-19-2014
11:26 AM
|
0
|
0
|
617
|
|
POST
|
Hi Marcin, Please have a look at this thread posts #6 and #7: http://forums.arcgis.com/threads/94377-offline-map-viewing And also the offline map discussion here: https://developers.arcgis.com/android/guide/create-an-offline-map.htm Hope this helps!
... View more
02-19-2014
10:24 AM
|
0
|
0
|
2713
|
|
POST
|
Hi Cepheus, Two suggestions: Have you reviewed the online help for Offline Editing (in beta)? https://developers.arcgis.com/android/guide/edit-offline.htm https://developers.arcgis.com/android/guide/sync-offline-edits.htm Have you looked at the disconnected editing process using Collector? http://blogs.esri.com/esri/arcgis/2014/02/17/collector-disconnected-editing-and-sync/
... View more
02-19-2014
09:45 AM
|
0
|
0
|
1021
|
|
POST
|
Hi Brett, Are you trying to do something detailed like use a Location Quotient formula to analyze a region's econonic base? http://en.wikipedia.org/wiki/Economic_base_analysis Or some simple site analysis, for example on page 20 of this eBook? http://arczone.esri.com/library/electronicResources/Improving%20Retail%20Performance%20with%20Location%20Analytics.pdf Or somewhere in between?
... View more
12-10-2013
08:11 AM
|
0
|
0
|
1130
|
|
POST
|
I just wanted to update this thread with a test I ran today in ArcMap 10.2, attempting to use GetParameterAsText. I first made an empty text file in my temp folder, c:\temp\log.txt (no programming, just went in and made the text file.) Here is the script I used to test, it builds off the one shown earlier/above in this discussion. import sys import os import arcpy #one = sys.argv[1] #two = sys.argv[2] one = arcpy.GetParameterAsText(0) two = arcpy.GetParameterAsText(1) message = open("c:/temp/log.txt", "a") message.write(one+"\n") message.write(two+"\n") Here is what I did in the Python Window in ArcMap, it ran and returned exit code 0. >>> import os >>> os.system("c:\student\script1.py hi mom") 0 >>> Here are the contents of the output text file, log.txt. hi mom
... View more
11-15-2013
11:58 AM
|
2
|
1
|
2053
|
|
POST
|
Hi Tom, I am not sure if this is the correct solution. But in the error messages you posted it appears that you have the .NET Framework 4.0... but you need 4.5. This linked article explains more: http://support.esri.com/en/knowledgebase/techarticles/detail/40833 Please let me know if this helps
... View more
04-05-2013
11:39 AM
|
0
|
0
|
4602
|
|
POST
|
Did the ls -l show the owner? It should not be root. As you can't install the software on Linux as a 'root' OS-level user.
... View more
10-11-2012
01:58 PM
|
0
|
0
|
2035
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 02-18-2026 03:35 PM | |
| 3 | 01-30-2026 02:00 PM | |
| 1 | 01-21-2025 02:22 PM | |
| 7 | 01-21-2025 12:33 PM | |
| 3 | 01-07-2025 09:00 AM |
| Online Status |
Offline
|
| Date Last Visited |
14 hours ago
|