|
POST
|
You can get the symbol of popup's graphic and set it to result features of cut. If graphic does not have symbol then you can get the symbol from renderer like this... AGSSymbol *symbol = [graphic.layer.renderer symbolForGraphic:graphic timeExtent:nil]; NSLog(@"symbol: %@",[symbol encodeToJSON]); Hope this helps! Regards, Nimesh
... View more
08-14-2012
11:17 AM
|
0
|
0
|
1012
|
|
POST
|
The ArcGIS application provides the functionality to measure the area and distance but it does not provide any tool to export that as JPEG. If you want that functionality then you should write your custom application using ArcGIS Runtime SDK for iOS. Regards, Nimesh
... View more
08-14-2012
09:26 AM
|
0
|
0
|
561
|
|
POST
|
You don't need to subclass. You should set your own button/action to the AGSPopupsContainerViewController's actionButton. Please see custom action documentation. Hope this helps! Regards, Nimesh
... View more
08-14-2012
09:22 AM
|
0
|
0
|
1571
|
|
POST
|
If you are using ARC then you should create property with 'strong' keyword. in .h file @property (nonatomic, strong) AGSIdentifyTask *task; in .m file @synthesize task; self.task=[[AGSIdentifyTask alloc]initWithURL:petroURL]; Regards, Nimesh
... View more
08-03-2012
03:38 PM
|
0
|
0
|
2113
|
|
POST
|
It's not getting any result because AGSIdentifyTask is getting released. Create a retain property for "AGSIdentifyTask *task" and then try. Regards, Nimesh
... View more
08-03-2012
02:47 PM
|
0
|
0
|
2113
|
|
POST
|
Okay..let me explain few things... 1. Dynamic layer is just an IMAGE not a GRAPHIC which you click and get he information. Please go through ArcGIS Dynamic Map Service Layer document. 2. If you want to show the information for a feature in a dynamic layer then you will have to request it from server by either executing query task or identify task. They will return result as graphics. Which you suppose to add to the graphics layer and then on click of that graphic you can show the callout and detail. 3. If you want directly graphics in map then use AGSFeatureLayer instead of AGSDynamicMapServiceLayer. On click of a feature of feature layer you'll see callout and show further detail. Hope this helps! Regards, Nimesh
... View more
08-02-2012
11:07 AM
|
0
|
0
|
2113
|
|
POST
|
Sorry, there is no symbol in ArcGIS for iOS SDK which supports animation. We'll look into this requirement. Regards, Nimesh
... View more
08-01-2012
02:53 PM
|
0
|
1
|
1486
|
|
POST
|
Unfortunately, no, there is no symbol which can hold UIImageView. What is your use case? Why you want to use UIImageView as part of symbol instead of UIImage? Regards, Nimesh
... View more
08-01-2012
02:00 PM
|
0
|
0
|
1486
|
|
POST
|
Is it possible for you to share small set of data so I can try few things at my end? If not, I would suggest moving this thread to the ArcGIS Server issues so you get input from other caching expert users. Regards, Nimesh
... View more
08-01-2012
09:34 AM
|
0
|
0
|
2820
|
|
POST
|
You want to close the callout when you click on the callout's disclosure button? If yes, you should adopt AGSMapViewCalloutDelegate and use didClickCalloutAccessoryButtonForXXX method and set self.mapView.callout.hidden = TRUE. Hope this helps! Regards, Nimesh
... View more
08-01-2012
09:23 AM
|
0
|
0
|
619
|
|
POST
|
Russell, Please go through labels in map caches document and let me know if that helps. Regards, Nimesh
... View more
07-31-2012
09:07 AM
|
0
|
0
|
2820
|
|
POST
|
Just set the navigation view controller's frame before setting it as callout custom view and it should fix it. See code below... -(void)identifyTask:(AGSIdentifyTask *)identifyTask operation:(NSOperation *)op didExecuteWithIdentifyResults:(NSArray *)results
{
NSLog(@"Identify task returned with %d results.", [results count]);
if (results && results.count > 0)
{
IdentifyResultsViewController *idWindow = [[IdentifyResultsViewController alloc] init];
idWindow.results = results;
UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:idWindow];
//set the frame before setting the callout custom view
nvc.view.frame = CGRectMake(0, 0, 275, 400);
map.callout.customView = nvc.view;
[map showCalloutAtPoint:self.mapPoint];
}
}
Regards, Nimesh
... View more
07-31-2012
08:48 AM
|
0
|
0
|
1484
|
|
POST
|
You're welcome! Please mark thread as answered! 🙂 Regards, Nimesh
... View more
07-30-2012
02:17 PM
|
0
|
0
|
1281
|
|
POST
|
You're welcome! If you're satisfied with the answer then please mark thread as answered. Regards, Nimesh
... View more
07-30-2012
11:25 AM
|
0
|
0
|
1181
|
|
POST
|
It is failing because you are setting the barrier's geometry as AGSEnvelope. Since, you want to set the polygon barrier, it's geometry must be AGSPolygon. Hope this helps! Regards, Nimesh
... View more
07-30-2012
11:04 AM
|
0
|
0
|
813
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-18-2024 12:33 PM | |
| 1 | 03-12-2024 08:54 AM | |
| 1 | 09-28-2023 08:19 AM | |
| 2 | 07-28-2023 08:07 AM | |
| 1 | 06-27-2013 10:42 AM |
| Online Status |
Offline
|
| Date Last Visited |
03-30-2026
10:15 AM
|