|
POST
|
Thanks for your reply. I'm now able to edit the feature attribute values on the client side. You're right that the edits remain locally and are not updated to the web map hosted on ArcGIS.com. Is there a way to overcome this? Such as to save the web map from the client side after updating like what's done at ArcGIS.com. I've created the web map based on credentials as those to sign-in to ArcGIS.com. Unfortunately, there is not way to over come this. The feature collections can be edited only on arcgis.com. Does it mean that edits can only be updated for features hosted on a Feature Server? Yes! Regards, Nimesh
... View more
04-11-2012
11:22 AM
|
0
|
0
|
2182
|
|
POST
|
Please go through documentation of AGSLocalTiledLayer for of tpk support in the ArcGIS Runtime SDK for iOS. Also, look at the sample. Regards, Nimesh
... View more
04-10-2012
01:05 PM
|
0
|
0
|
2841
|
|
POST
|
Great! If layer need not be visible at all times then you can set "flView.hidden = TRUE;" Regards, Nimesh
... View more
04-10-2012
12:22 PM
|
0
|
0
|
2419
|
|
POST
|
Okay..let's look at two issues one by one. 1. Does adding feature layers on TOP of tiled layer resolves the scale dependent issue? 2. If yes, you should set the transparency on the feature layer view to resolve tiled layer label display issue. Here is the code... UIView<AGSLayerView> *flView = [self.mapView addMapLayer:self.featureLayer withName:@"Feature Layer"];
flView.alpha = 0.5; Regards, Nimesh
... View more
04-10-2012
11:30 AM
|
0
|
0
|
2419
|
|
POST
|
Is your feature layer a base layer (first layer in the map view)? If yes, you should just add one tiled or dynamic layer as base layer and make feature layer as operational layer. Regards, Nimesh
... View more
04-10-2012
11:01 AM
|
0
|
0
|
2419
|
|
POST
|
Luca, If this issue is resolved then please mark thread as answered. Regards, Nimesh
... View more
04-10-2012
10:11 AM
|
0
|
0
|
1412
|
|
POST
|
Surprising! Seeing this kinda issue first time! Glad to know that everything is up and running now! 🙂 1. The Esri Help/documentation does not say whether prior versions of the SDK should be uninstalled before installing a new version or not. It'd be helpful if the documentation clarified this point. You do not require to explicitly uninstalling old version. When you install new version, that will take care of that. In your case, since it was getting installed at different location, it was not able to do. 2. The Online documentation topic "Configuring an Xcode Project" says to add the following compiler linker flags: "-ObjC -all_load -framework ArcGIS". But the samples also include the additional flag "-lstdc++". Is the latter required? Small detail I know, but the documentation and samples are not consistent here. If you remove additional flag "-lstdc++", then you'll HAVE to add "libstdc++.dylib" to the project. That's the difference. Regards, Nimesh
... View more
04-10-2012
09:42 AM
|
0
|
0
|
1963
|
|
POST
|
Great! Good to know that everything works for you now! 🙂 Regards, Nimesh
... View more
04-10-2012
09:24 AM
|
0
|
0
|
2472
|
|
POST
|
You should find the popupInfo like this, AGSPopupInfo *popupInfo = [self.webMap popupInfoForFeatureLayer:(AGSFeatureLayer *)graphic.layer]; You can edit feature collections only on arcgis.com not on any mobile clients like iOS, android etc. Hence, editing will be FALSE by default. If you want to you can set 'popupInfo.allowEdit = TRUE;' explicitly after creating a popupInfo but you won't be able to save the edits. Regards, Nimesh
... View more
04-10-2012
09:22 AM
|
0
|
0
|
2182
|
|
POST
|
Yes, it is fixed! It's just a bug fix. Hence, not listed in the 'What's New' doc. Regards, Nimesh
... View more
04-10-2012
08:54 AM
|
0
|
0
|
318
|
|
POST
|
User is an administrator is not the reason of this. Let's diagnose the issue. Please follow below steps and send the information. 1. Open Terminal and type command, 'echo $HOME' (without quotes). Send the output. 2. Open /Application/Utilities/Console >> Click 'Clear Display'. 3. Now install the SDK, you'll see the install logs in the Console display. 4. Send us the log information. 5. Since, the SDK is getting installed at /Library, you'll see a AGSiOSSDK folder under /Library/Application Support. Please give manifest file from that folder. Regards, Nimesh
... View more
04-09-2012
04:10 PM
|
0
|
0
|
8030
|
|
POST
|
Maarten, Please let me know if you have any more question or if the issue is resolved then please mark thread as answered. Thank you! Regards, Nimesh
... View more
04-09-2012
11:09 AM
|
0
|
0
|
1834
|
|
POST
|
If you want to convert between WGS 1984 (4326) and Web Mercator (102100) then use AGSGeometryGeographicToWebMercator() and AGSGeometryWebMercatorToGeographic() functions. Regards, Nimesh
... View more
04-09-2012
10:58 AM
|
0
|
3
|
2659
|
|
POST
|
The SDK should reside under ${HOME}/Library. If you have andy ArcGIS content under /Library then delete them. Regards, Nimesh
... View more
04-09-2012
10:53 AM
|
0
|
0
|
8030
|
|
POST
|
Thanks for the details. See attached screenshot (first one below). I see ArcGIS.framework there but not samples. Under ArcGIS.framework there are 3 aliases but they are all "broken" - double-clicking on one gives error "The operation can't be completed because the original item for 'ArcGIS' can't be found." This is incomplete content and items missing in there...either it did not install completely or uninstalled completely. Just go to /Users/myuserid/Library/Application Support and remove AGSiOSSDK folder. Also, go to /Users/myuserid/Library and remove SDKs folder. Now, reinstall the SDK package. Note: I am still somewhat new to macs, and am not totally clear on the relationship between these folders (i.e., /Library vs. ${HOME}/Library) /Library - Library folder available at your hard drive. ${HOME}/Library - This is same as /Users/myuserid/Library. ${HOME} = /Users/myuserid. Hope this is clear to you now. See attached screenshot (second one below) - another mac/Xcode detail I am a little unclear on. The value /Users/myuserid/Library/SDKs/** is what displays on the Build Settings page, but if you double-click to edit it shows value $HOME/Library/SDKs. I assume this is OK/correct - just slightly confusing why it shows two different ways. Yes, that's correct. ${HOME} = /Users/myuserid. We've released v2.2.1 with just one fix for the reason below...Please download, install and let me know if you still have any problem. v2.2.1 This update contains a minor fix to the SDK installation package. The installer was unnecessarily laying down files related to legacy XCode Project Templates. These templates were deprecated and removed back at v2.1. In majority of the cases, the template files did not cause any harm. However, in exceptional cases, users were not able to install v2.2 due to permission issues related to where the files were being written. The v2.2.1 installer does not lay down these files. Regards, Nimesh
... View more
04-09-2012
10:24 AM
|
0
|
0
|
8030
|
| 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
|