|
POST
|
Thanks for reporting. We'll look into this. Regards, Nimesh
... View more
12-28-2012
12:33 PM
|
0
|
0
|
584
|
|
POST
|
You'll see both working in the next version of the SDK release (very soon). 🙂 Regards, Nimesh
... View more
12-28-2012
12:12 PM
|
0
|
0
|
807
|
|
POST
|
Is calling [self.activeFeatureLayer refresh]; after successful update helps? Regards, Nimesh
... View more
12-28-2012
12:09 PM
|
0
|
0
|
1359
|
|
POST
|
Try changing code in your "mapView: didLoadLayerForLayerView:" as following... if ([layerView.agsLayer isKindOfClass:[AGSFeatureLayer class]]) {
AGSFeatureLayer *fl = (AGSFeatureLayer*)layerView.agsLayer;
fl.queryDelegate = self;
AGSQuery* query = [AGSQuery query];
query.where = @"ID <> 0";
//query.spatialRelationship = AGSSpatialRelationshipWithin;
//query.geometry = californiaGeometry;
[fl selectFeaturesWithQuery:query selectionMethod:AGSFeatureLayerSelectionMethodAdd];
} Hope this helps! Regards, Nimesh
... View more
12-28-2012
12:06 PM
|
0
|
1
|
972
|
|
POST
|
GPS symbol will always be on top. In the current SDK there is not way to get around but in the future version of the SDK we'll add an option to set transparency on the GPS symbol so you can see graphics below it. Regards, Nimesh
... View more
12-28-2012
10:15 AM
|
0
|
0
|
575
|
|
POST
|
Are you adding any graphics/features to the feature layer which resides on the client side only and not committed to server? Regards, Nimesh
... View more
12-28-2012
10:08 AM
|
0
|
0
|
1359
|
|
POST
|
AGSWMSLayer does not have Time support. The property timeAware is inherited property and is always FALSE for AGSWMSLayer. Regards, Nimesh
... View more
12-28-2012
10:06 AM
|
0
|
0
|
566
|
|
POST
|
We purposely (for a use case) do not re-center map on user's location and keep map rotated in the last direction while transitioning from AGSGPSAutoPanModeCompassNavigation to AGSGPSAutoPanModeOff. I'm not sure whether you have noticed this but if you're in navigation mode (AGSGPSAutoPanModeCompassNavigation) and driving, now you want to see/check the map around current location and you try to touch/pan/zoom map then it automatically changes to the AGSGPSAutoPanModeOff. If at this time SDK re-center the map or auto-correct the angle then it'll will look really bad. We're leaving this situation to handle to the develop so they can do as per desired and what is right for their apps to behave. Hope this helps! Regards, Nimesh
... View more
12-28-2012
10:04 AM
|
0
|
0
|
1048
|
|
POST
|
If you want to load/show multiple tiled layers on map then MAKE SURE that all HAVE SAME SPATIAL REFERENCE. Regards, Nimesh
... View more
12-28-2012
09:39 AM
|
0
|
0
|
585
|
|
POST
|
There is no defined limit as such. However, how many points are in your polyline? You can use numPaths and numPointsInPath: on AGSPolyline to find out. Regards, Nimesh
... View more
12-28-2012
09:32 AM
|
0
|
0
|
466
|
|
POST
|
So why you want to start the GPS when you are not/does not want to be at location? Or you want to start GPS and move/pan map to the current location? If yes, you should set autoPanMode property. like this.. if (!self.mapView.gps.enable) {
self.mapView.autoPanMode = AGSGPSAutoPanModeDefault;
[self.mapView.gps start];}
else {
[self.mapView.gps stop];} Regards, Nimesh
... View more
12-28-2012
09:29 AM
|
0
|
0
|
1643
|
|
POST
|
What is the spatial reference of the map? What is the spatial reference of feature layer? Is that matching with geometry you are creating with 4326 spatial reference? Regards, Nimesh
... View more
12-28-2012
09:22 AM
|
0
|
0
|
517
|
|
POST
|
Why you want to hook up your own CLLocaitonManager? AGSGPS does all that and abstracting all details. What is missing? What you want more? Regards, Nimesh
... View more
12-28-2012
09:19 AM
|
0
|
0
|
1383
|
|
POST
|
This error generally, pops up when GPS is not getting the signal. Do you see this error in simulator? or device? Regards, Nimesh
... View more
12-28-2012
09:02 AM
|
0
|
0
|
1643
|
|
POST
|
Yes, you should follow the configuration steps outlined here. Regards, Nimesh
... View more
12-28-2012
08:38 AM
|
0
|
0
|
841
|
| 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
|