|
POST
|
Paul, Please post the web map JSON (by hiding some information) so I can have a look at it and help you. Are you able to access the same service in Safari browser of the same device? Regards, Nimesh
... View more
08-03-2011
08:28 AM
|
0
|
0
|
2297
|
|
POST
|
The disappearing credential in AGSMapServiceInfo is fixed at v2.0. I don't see any problem in password having "#". I tested Tiled and Dynamic map services with password "#t/" and it works at v1.8 and v2.0. Regards, Nimesh
... View more
07-29-2011
09:01 AM
|
0
|
0
|
1577
|
|
POST
|
Yes, v2.0 of ArcGIS app supports it. Regards, Nimesh
... View more
07-28-2011
08:48 AM
|
0
|
0
|
837
|
|
POST
|
That was an issue at v1.8 but fixed in v2.0. You can test it and decide whether to upgrade or not. IMHO, there is no risk in upgrading to v2.0. It has additional feature called popups, bug fixes and performance improvement in Graphics/Feature layer. Regards, Nimesh
... View more
07-28-2011
08:03 AM
|
0
|
0
|
1577
|
|
POST
|
Chris, You should symbolize your polygon graphics in AGSGraphicsLayer with AGSCompositeSymbol which has AGSSimpleFillSymbol and AGSTextSymbol. Regards, Nimesh
... View more
07-27-2011
08:59 AM
|
0
|
0
|
1165
|
|
POST
|
Rene, 1. Which version of the API are you using? v1.8 or v2.0? 2. Is HTTP authentication Basic or Digest? 3. Is SSL enabled on the server? Regards, Nimesh
... View more
07-27-2011
08:41 AM
|
0
|
0
|
1577
|
|
POST
|
Rick, Glad to know that it works for you now. 🙂 Not sure why the grid lines coming in the image. Chris, You're welcome 🙂 Regards, Nimesh
... View more
07-22-2011
01:03 PM
|
0
|
0
|
2660
|
|
POST
|
Looks like you're testing in Simulator. Try testing on device. The layer property of mapView is inherited property of UIView. Send your project if you're unable to get it to work. Regards, Nimesh
... View more
07-20-2011
08:43 AM
|
0
|
0
|
2660
|
|
POST
|
Rick, There is no direct function in ArcGIS API for iOS to export image of mapView. You need to use iOS SDK to do so. It's very simple. Here is the code... - (IBAction)exportMapViewImage:(id)sender {
//export image of mapView
UIGraphicsBeginImageContext(self.mapView.frame.size);
[self.mapView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *screenshot = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
//save image to photo album
UIImageWriteToSavedPhotosAlbum(screenshot,self,@selector(image:didFinishSavingWithError:contextInfo:),nil);
}
- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
{
// Was there an error?
if (error != NULL)
{
// Show error message...
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error"
message:[error localizedDescription]
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
[alert release];
}
else // No errors
{
// Show message image successfully saved
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Image Saved"
message:@"Image saved to photo album successfully!"
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
[alert release];
}
}
Regards, Nimesh
... View more
07-19-2011
11:43 AM
|
0
|
0
|
2660
|
|
POST
|
Marco, Thank you for reporting. We'll look into it. Appreciate, if you can attach a sample app demonstrating the issue. Thank you! Regards, Nimesh
... View more
07-13-2011
08:58 AM
|
0
|
0
|
1438
|
|
POST
|
Yes, the new version of API supports opening a webmap from ArcGIS.com. Nelson, Please provide detail information about the problem you came across so we can look into it. Thank you. Regards, Nimesh
... View more
07-13-2011
08:55 AM
|
0
|
0
|
557
|
| 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
|