POST
|
Hello everyone Some of you would know tell me how to do identify a service wms. I used the example of esri "IDENTIFY TASK SAMPLE", but when I touch the map shows the message "illegal start of token [<]" Any idea ????
... View more
02-13-2015
03:33 AM
|
0
|
0
|
3791
|
POST
|
Hi Luca, The ArcGIS Runtime API for iOS supports offline editing. You can download features from a sync-enabled feature service and store them in a replica geodatabase on the device. Then you can view and edit these features. You can find a sample for Offline Feature Editing at arcgis-runtime-samples-ios/OfflineFeatureEditingSample at master · Esri/arcgis-runtime-samples-ios · GitHub
... View more
01-22-2015
02:40 PM
|
0
|
0
|
3
|
POST
|
Hello everyone In my application I want to create a local geodatabse that contains a feature polygonal, punctual and linear. I want to set the fields in each table feature (field 1 = text field named "type" field 2 = text field named "description). I would like some help on how to do. Thank You
... View more
12-24-2014
02:39 AM
|
0
|
0
|
2914
|
POST
|
I would make 2 changes in your code. for ( int i= 0 ;i<[ self . nome count ];i++){ NSString *url = [ NSString stringWithFormat : @"%@/%i" ,servizio, i]; AGSFeatureLayer *local = [ AGSFeatureLayer featureServiceLayerWithURL :[ NSURL URLWithString :url] mode : AGSFeatureLayerModeSnapshot ]; [ self . mapView addMapLayer : local withName :[ self . nome objectAtIndex :i]]; } Then I would let them all load before calling the method to remove them by name, as what I think is happening, you call remove layer with name and hasn't been loaded yet. Let me know if that makes any difference. Cheers Al
... View more
11-21-2014
02:04 PM
|
0
|
0
|
16
|
POST
|
Thanks for the reply. The service ArcGIS Service is not my service, but it is a service created by the region of Sicily. I can not change the original project ArcMap. I found a solution. I load individually FeatureLayer that constitute the AGSDynamicMapServive with this code: for(int i=0;i<[nome count];i++){ NSString *url = [NSString stringWithFormat:@"%@/%i",servizio, i]; AGSFeatureLayer *featureLayer = [AGSFeatureLayer featureServiceLayerWithURL:[NSURL URLWithString:url] mode:AGSFeatureLayerModeOnDemand]; [self.mapView addMapLayer:featureLayer withName:[nome objectAtIndex:i]]; self.legendDataSource = [[LegendDataSource alloc] initWithLayerTree:[[AGSMapContentsTree alloc]initWithMapView:self.mapView manageLayerVisibility:YES]]; NSLog(@"%@", url); } where nome in Array of featureLayer of AGSDynamicMapService
... View more
11-19-2014
11:03 PM
|
0
|
0
|
4
|
POST
|
Solved Easier to do that than to say I created a xib file and I linked this file to LegendViewController. very easy
... View more
11-03-2014
03:59 AM
|
0
|
0
|
4
|
POST
|
What problems are you having with iCloud? If you are using iCloud to share a .geodatabase, the best way is not to register the file .geodatabse from the iCloud folder, instead copy the file to register and sync against the server, otherwise iCloud will not let other devices sync against the server. Why is that? iCloud files are shared between devices, however you want each device to register once against the server to sync. Try to copy the file from the iCloud folder before using it and let me know Cheers Al
... View more
10-21-2014
01:50 PM
|
0
|
0
|
6
|
POST
|
In my app I would like to show the legend of a .geodatabse file (created with arcmap) and I would like to have a popup when I touch. Examples of esri related to offline editing does not work. Please let help me. thanks
... View more
10-01-2014
06:36 AM
|
0
|
0
|
2594
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|