|
POST
|
Seems that your ArcGIS server is not accessible from your iPad. Is your iPad connected (wi-fi) to the same network as your server? Regards, Nimesh
... View more
07-23-2012
11:23 AM
|
0
|
0
|
1702
|
|
POST
|
Are you able to access the service url (http://OurServer/ArcGIS/rest/services/Gas_Stations/MapServer) in iPad browser (Safari)? Regards, Nimesh
... View more
07-23-2012
10:05 AM
|
0
|
0
|
1702
|
|
POST
|
If you have a traffic condition layer then you can use it as a barrier in your route task. You should use AGSRouteTaskParameters::set(Point/Polyline/Polygon based on your traffic condition layer geometry)Barriers method to set the barriers before solving the route in your application. Regards, Nimesh
... View more
07-17-2012
12:40 PM
|
0
|
0
|
1143
|
|
POST
|
Yes, you'll have to project your WGS 1984 geometry into Web Mercator. You got two options to do so....Use AGSGeometryGeographicToWebMercator function or use AGSGeometryEngine's projectGeometry method. Hope this helps! Regards, Nimesh
... View more
07-17-2012
12:34 PM
|
0
|
0
|
1556
|
|
POST
|
There is no provision of traffic condition in ArcGIS Runtime SDK for iOS. Regards, Nimesh
... View more
07-16-2012
09:32 AM
|
0
|
0
|
1143
|
|
POST
|
Let me ask few questions, which will help you... 1. Which routing service are you using? From your ArcGIS Server? 2. Is network data used in the routing supports to and from locations of your landmarks? 3. Make sure that you are able to find routes for desired stops in ArcMap and you'll be able to do the same from iOS route task. Hope this helps! Regards, Nimesh
... View more
07-16-2012
09:29 AM
|
0
|
0
|
714
|
|
POST
|
Unfortunately, No, there is no way to overcome that limitation, not with v2.3 or ArcGIS Online subscription. 😞 Regards, Nimesh
... View more
07-16-2012
08:51 AM
|
0
|
0
|
591
|
|
POST
|
In case of web map, you should do it like this... AGSPopupInfo *popupInfo = [self.webMap popupInfoForFeatureLayer:(AGSFeatureLayer*)graphic.layer]; AGSPopup *popup = [AGSPopup popupWithGraphic:graphic popupInfo:popupInfo]; popup.allowEdit = YES; self.popupVC = [[[AGSPopupsContainerViewController alloc]initWithPopups:[NSArray arrayWithObjectopup]]autorelease]; Regards, Nimesh
... View more
07-16-2012
08:48 AM
|
0
|
0
|
1950
|
|
POST
|
Yes, here is the v2.3 documentation. Regards, Nimesh
... View more
07-13-2012
09:16 AM
|
0
|
0
|
1950
|
|
POST
|
Try doing this works? AGSPopup *popup = [AGSPopup popupWithGraphic:graphic popupInfo:info]; popup.allowEdit = YES; self.popupVC = [[[AGSPopupsContainerViewController alloc]initWithPopups:[NSArray arrayWithObject:popup]]autorelease]; Regards, Nimesh
... View more
07-12-2012
08:06 AM
|
0
|
0
|
1950
|
|
POST
|
Please make sure that project's "Framework Search Paths" set correctly and ArcGIS.framework is available at that path. Regards, Nimesh
... View more
07-12-2012
07:59 AM
|
0
|
0
|
538
|
|
POST
|
Try attached feature layer editing sample which uses your web map. Regards, Nimesh
... View more
06-29-2012
09:58 AM
|
0
|
0
|
2284
|
|
POST
|
The field data does not show up because graphic belongs to "Koch Boundary" layer and it does not have popups enabled. Just change your code of didClickCalloutAccessoryButtonForGraphic like this...it won't show popup for the boundary layer. -(void)mapView:(AGSMapView *)mapView didClickCalloutAccessoryButtonForGraphic:(AGSGraphic *)graphic{ self.activeFeatureLayer = (AGSFeatureLayer*) graphic.layer; NSLog(@"%@",graphic.layer.name); if (![graphic.layer.name isEqualToString:@"Koch_Boundary1"]) { //Show popup for the graphic because the user tapped on the callout accessory button self.popupVC = [[[AGSPopupsContainerViewController alloc] initWithWebMap:self.webmap forFeature:graphic usingNavigationControllerStack:NO] autorelease]; self.popupVC.delegate = self; self.popupVC.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal; //If iPad, use a modal presentation style if([[UIDevice currentDevice] isIPad]) self.popupVC.modalPresentationStyle = UIModalPresentationFormSheet; [self presentModalViewController:self.popupVC animated:YES]; } } Hope this helps! Regards, Nimesh
... View more
06-28-2012
08:35 AM
|
0
|
0
|
2284
|
|
POST
|
You can either remove unwanted fields from info.fieldInfos or set outFields property of feature layer. However, I just want to let you know that based on your code you are not using the popups defined in the web map. So if you make any changes in the popup defined on a web map then you won't see those changes. If you are using the popup defined in the web map then you can manage the fields in the web map and it'll be honored in your app. Regards, Nimesh
... View more
06-27-2012
10:51 AM
|
0
|
0
|
2284
|
| 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
|