|
POST
|
Hi Kristoffer, Thanks for your detail information. One thing I want to make sure is that when the app running in online mode, can the popup container see the updated coded value (as you mentioned the 73th value)? The reason I ask this is because if your application keep in offline mode, it will loading the old offline gdb file, which means the data scheme only have 72 values, and it can not get the updated schema. The app need to download a new offline gdb first and then can sync with new added coded value. Please let me know if you have any other concern about this question.
... View more
12-12-2014
10:15 AM
|
1
|
3
|
2593
|
|
POST
|
Hi Kristoffer, I am not really sure what do you mean by "adding coded values for some of the fields". Do you mean adding a new coded value to an existed data schema or adding a feature with one of the existing coded value from the service? And when edited in offline mode it can't sync back right? Would you elaborated a little bit detail?
... View more
12-11-2014
04:47 PM
|
0
|
0
|
2593
|
|
POST
|
Hi Steve, I found this thread when I encountered the same issue. There has been a NIM logged for the ability to publish a standalone table as a service: NIM084140 - Unable to share a map containing only a stand-alone table as service. http://support.esri.com/en/bugs/nimbus/role/beta10_1/TklNMDg0MTQw Like you said, the current workaround is publish map document with table and include an empty, unchecked feature class and then will be able to publish/query the table as REST.
... View more
12-08-2014
08:22 AM
|
0
|
0
|
3392
|
|
POST
|
Hi Beate, Have you tried this way to implement the gdb file? NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *gdbPath = [paths objectAtIndex:0];
gdbPath = [gdbPath stringByAppendingPathComponent:@"your_File_Name.geodatabase"];
AGSGDBGeodatabase *gdb = [[AGSGDBGeodatabase alloc] initWithPath:gdbPath error:&error]; Let me know if this is help.
... View more
12-01-2014
09:31 AM
|
0
|
1
|
1867
|
|
POST
|
Hi Luca, In my view, Runtime iOS SDK is an interface to read the metadata from ArcGIS Server. I don't think the SDK can overwriting the Legend label from, in order to let your first two layers show the label name for the legend. I would suggest to check ArcMap and Right click those layer and choose properties -- symbology and add the label to this legend. Here I attached a screenshot for you as a reference. Hope this can help.
... View more
11-19-2014
05:17 PM
|
0
|
1
|
772
|
|
POST
|
Hello Geoffrey, Thanks for contact with us. I think its better to share the solution about how to populate the drop down list about the Service Request Type here: - The ServiceRequestType dropdown info get from the field name called “REQUESTTYPE” from the live feature service: (http://services.arcgis.com/b6gLrKHqgkQb393u/ArcGIS/rest/services/ServiceRequestTryItLive/FeatureServer/0) - Checked the LocalGovernment.gdb file downloaded from the local government template. Click the “CitizenService” feature dataset – “ServiceRequest” feature class – right click “ServiceRequest” – choose subTypes tab – click “Domains..” button - On the config.js file, the RequestTypeFieldName point to: "REQUESTTYPE", all the dropdown values come from the code value of Domain in “ServiceRequestType” - I attached a screenshot about the how to view the domain from the ArcMap. Technically, two things you should keep in mind: 1. Setup your own data follow this structure and the dropdown menu should populate correctly. 2. On the config.js file, call the right field name which content the “domain” of all the servicesRequestType
... View more
09-16-2014
11:27 AM
|
0
|
0
|
959
|
|
POST
|
Hi Lynn, I am not really sure what is ${pointID}? Is it point to your database field or something else? Here are two snippet code to use this AGSTextSymbol textSymbolWith Text method:
NSString *stopString = @"";
if (stopNumber != NSNotFound) {
stopString = [NSString stringWithFormat:@"%d", stopNumber];
}
AGSTextSymbol *ts = [AGSTextSymbol textSymbolWithText:stopString color:[UIColor blackColor]];
Or
NSMutableString *word = [NSMutableString stringWithFormat:@"Hello world"];
AGSTextSymbol *txtSymbol = [AgSTextSymbol textSymbolWithText:word color:[UIColor redColor]];
... View more
09-16-2014
11:18 AM
|
0
|
1
|
1135
|
|
POST
|
Hello Lynn, I think the method still using in 10.2.3. Please check this online documentation:10.2.3: AGSTextSymbol Class Reference Hope this help.
... View more
09-11-2014
10:51 AM
|
0
|
3
|
1135
|
|
POST
|
Technically, the default folder you need to check about Silverlight Application Builder is this path: "C:\inetpub\wwwroot\Apps\Your Application name\Config" and all layouts under "Layouts" folder Here is a related documentation about creat a custom layout: ArcGIS Viewer for Silverlight Create a custom layout Hope this helps!
... View more
09-04-2014
01:58 PM
|
0
|
1
|
647
|
|
POST
|
Hello Siva, I think the problem you have already fixed by remove the Spatial Reference (SR) settings in their iOS Application codes. The reason why I want to post is just in case someone in the future has a similar issue. Basically, when publish a TPK file from ArcMap, you want to make sure that the Spatial Reference should match with the Feature Services. The reason is because the Spatial reference is set prior to publishing, and this is not something that can be changed after publication based on current SDK function. The way to change the spatial reference for TPK, you need to choose the tiling scheme file if you want to publish the TPK in specific SR. The ArcGIS Online/Bing Maps/Google Maps will default use "102100(3857)" The way how to create a map tiling scheme, you should click "ArcToolbox" --> "Server Tools" --> "Caching" --> "generate Map Server Cache Tiling Scheme" and filling those parameters. Once you done this you will get a .xml file which you can put as tile format when you creating a TPK with specific SP. Hope those tips can help. Thanks for contact with Esri Support!
... View more
09-04-2014
01:41 PM
|
1
|
0
|
1147
|
|
POST
|
Hello Ravi, Essentially there might a few fields in the layers were published with nullable. Try to clean the null value, the Null values may held up the ability for JS to remember new edits being drawn.
... View more
09-03-2014
10:44 AM
|
0
|
1
|
1114
|
|
POST
|
Hi Kyle, I wonder have you try over cellular network, or just on company wifi? This issue seems to be coming from the firewall.
... View more
08-29-2014
03:24 PM
|
0
|
1
|
1332
|
|
POST
|
Hello Kyle, I am not really sure how do you want to arrange the two graphics display on the map. But ideally, each AGSGraphic should point to specific geometry, then based on the geometry you can associate the graphic to this unique Global ID. For example if you check 10.2.3: AGSGraphic Class Reference , it says "Only the geometry argument is mandatory." Therefore, I think you we using initWithJSON method, you suppose to do the same thing in order to make the graphic associate to specific Global ID. For example this is snippet:
AGSGraphic *pinGraphic = [AGSGraphic graphicWithGeometry:pt symbol:pinSymbol attributes:nil infoTemplateDelegate:nil];
Also, have you checked with this thread yet? This thread might give you some ideas as well. Update AGSFeatureLayer Hope this can help.
... View more
08-27-2014
02:38 PM
|
0
|
3
|
1341
|
|
POST
|
Hello Siva, Have you ever tried to use simplyMarkerSymbol to do the test? If other symbols can view on the map, then it looks like the image symbol has the viewable issue. If so you can try to contact Esri Tech support to create an incident about this issue.
... View more
08-22-2014
09:51 AM
|
0
|
1
|
1147
|
|
POST
|
Hello Sam, Basically there are two type of ways to setup the offline sync ability data schema before it published to ArcGIS Server. Read-only data, which means you can download from server to local, but not able to sync or editing anything back to server. Data need to be: - Add Global IDs - versioned Sync enable data, which means you can download offline geodatabase from server to local, and the sync function is enabled. Data need to be: - Add Global IDs - Nonversioned - Enable archiving For more detail information, please take a reference about this documenation: Preparing data for offline use Hope this can help.
... View more
08-20-2014
09:12 AM
|
1
|
0
|
961
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-20-2015 10:15 AM | |
| 1 | 07-31-2015 08:53 AM | |
| 1 | 01-28-2016 04:55 PM | |
| 1 | 02-22-2016 02:07 PM | |
| 1 | 05-20-2015 04:54 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-27-2025
09:24 AM
|