POST
|
Oh, I see Find a location in your code that runs before any ArcGIS Runtime functionality is used. Call the setLicenseKey method on the AGS ArcGISRuntimeEnvironment singleton object to license the app with a License key. In iOS/macOS app that would be in ` viewDidLoad` method, right after ` super . viewDidLoad () ` is called. regards, David
... View more
03-20-2018
02:39 AM
|
1
|
1
|
19
|
POST
|
Hi! For detailed licensing information I would recommend our developer pages: License your app—ArcGIS Runtime SDK for iOS | ArcGIS for Developers David
... View more
03-19-2018
07:55 AM
|
1
|
3
|
19
|
POST
|
Hi Nikolay Yekimov, Thank you for bringing this to our attention. There is a simple fix for this, Rebinding the map will force the refresh of tiles: if let poi = self . mapView . currentViewpoint (with: . centerAndScale ) { self . mapView . map = nil self . mapView . map = self . map self . mapView . setViewpoint (poi) } else { self . mapView . map = nil self . mapView . map = self . map }
... View more
03-08-2018
02:53 AM
|
0
|
0
|
9
|
POST
|
Hi Chirag, Do you mean getting thumbnail of a webMap for which you have an URL in this format: http://www.arcgis.com/home/item.html?id=8bf7167d20924cbf8e25e7b11c7c502c ? You get always get a thumbnail from the portal item if it exists. Once you have you portal item initialised you can call thumbnail and it will return an image if it exists. ArcGIS Runtime SDK for iOS: AGSItem Class Reference If you're asking how to create your own image/thumbnail for portal item. You can load the webMap and once it's rendered you can call exportImage on mapView. regards, David
... View more
03-24-2017
03:11 AM
|
0
|
2
|
9
|
POST
|
You can not create one yourself, that is correct. It is only returned as a result of another operation. Or it's a container for those results if you will. regards, David
... View more
03-23-2017
08:30 AM
|
0
|
0
|
9
|
POST
|
Hi Marius, Could you do a quick test? Swap your vectorTiled basemap for a normal tiled one and see if it still crashes. regards, David
... View more
03-23-2017
08:25 AM
|
0
|
0
|
8
|
POST
|
Hi! All 100.0 releases of the API have drawStatus which indicates when the map finished drawing. So until all the tiles are downloaded and rendered, status will be inProgress. Once done it will indicate Completed status. You can add an observer for that property. And once it's completed you can export the image with mapView.exportImage mapView.addObserver( self , forKeyPath: "drawStatus" , options: .new, context: &myContext) regards, David
... View more
03-23-2017
03:22 AM
|
1
|
0
|
12
|
POST
|
Hi! You need to specify specific layer inside featureService let featureTable = AGSServiceFeatureTable (url: URL (string: " https://services7.arcgis.com/JRY73mi2cJ1KeR7T/arcgis/rest/services/NewYorkHospitalLayer/FeatureServer/0 " )!) regards, David
... View more
03-17-2017
07:29 AM
|
1
|
2
|
7
|
POST
|
Hi! This online sample in our GitHub repository should give you an idea how the API is wired together: arcgis-runtime-samples-ios/IdentifyLayersViewController.swift at master · Esri/arcgis-runtime-samples-ios · GitHub regards, David
... View more
03-15-2017
10:56 AM
|
0
|
2
|
9
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:22 AM
|