|
POST
|
Runtime makes requests via a URLSession that it creates internally. Runtime uses the default `HTTPMaximumConnectionsPerHost` setting and does not expose a way to configure that setting.
... View more
07-08-2021
07:45 AM
|
1
|
3
|
2870
|
|
POST
|
Nevermind - I realize that you still want to be able to move vertices. I don't think we have anything at this time that allows you to move but not add vertices.
... View more
06-14-2021
08:03 AM
|
1
|
0
|
1859
|
|
POST
|
There is an `editConfiguration` property of the sketch editor. On that property you can set the `vertexEditMode` to `AGSSketchVertexEditModeSelectOnly` (`.selectOnly` if using Swift). I think that should do what you want: /**
Specifies permitted operations on the vertices of the geometry.
@since 100.2
*/
typedef NS_ENUM(NSInteger, AGSSketchVertexEditMode) {
AGSSketchVertexEditModeInteractionEdit, /*!< Users can interactively select, add, remove, and move vertices. */
AGSSketchVertexEditModeSelectOnly /*!< Users can interactively only select vertices. Vertices cannot be added, moved, or removed interactively. */
};
... View more
06-14-2021
08:01 AM
|
0
|
0
|
1859
|
|
POST
|
There is a document here describing changes from 10.2.x to 100.x. The latest version is 100.11.1 (not 100.4). The home page for the iOS runtime SDK provides many samples and sample code. Also the API reference is available. Per the screen shots you provided: AGSGraphicsLayer is now AGSGraphicsOverlay AGSMapViewTouchDelegate is now AGSGeoViewTouchDelegate AGSGeometryEngine - there is no more shared "singleton" instance. All methods are now just static (class methods). wgs84SpatialReference is now just WGS84 pictureMarkerSymbolWithImageNamed is now just pictureMarkerSymbolWithImage (pass in a UIImage that you create with a name) To add graphics to a previous graphics layer, you now go through the AGSGraphicsOverlay.graphics NSMutableArray To add a graphics layer to a map, you use AGSMapView.graphicsOverlays to center a map at a point, you use the AGSMapView.setViewpoint methods.
... View more
06-09-2021
08:41 AM
|
1
|
2
|
2065
|
|
POST
|
To narrow down the issue it would be helpful to have some questions answered please. What models of devices are you seeing this on? What operating system versions are they running? What kind of data are you showing in your maps? Any insight to help us narrow down the issue and reproduce it would be helpful.
... View more
03-02-2020
08:00 AM
|
0
|
1
|
2628
|
|
POST
|
You are correct. At this point estimating the size of a geodatabase downloaded from the AGSGeodatabaseSyncTask is not supported.
... View more
02-20-2020
12:32 PM
|
0
|
0
|
598
|
|
POST
|
Usually when completions aren't called it's because the object that the async method was on was deallocated. In your case that would be `offlineMapExportTask`. Can you verify that the object is around for the lifetime of the async call?
... View more
02-20-2020
12:30 PM
|
0
|
0
|
584
|
|
POST
|
As far as I can tell these exceptions are harmless. They are caught by the c++ code wrapping pplx. All signs point to them being expected exceptions, most likely related to async data fetching tasks that were cancelled when the mapview was deallocated. You can turn off the C++ exception breakpoint and not see them (Just create an objective-c only exception breakpoint). That would only be important for you if you have C++ code in your app.
... View more
02-20-2020
12:26 PM
|
1
|
0
|
1562
|
|
POST
|
You can change selection color like so in swift: // set selection color
let sp = AGSSelectionProperties(color: Color.green)
mapView.selectionProperties = sp
... View more
04-09-2019
08:11 AM
|
1
|
4
|
1799
|
|
POST
|
you can check types of layers like so using swift's as operator, etc: let map = AGSMap()
for case layer as AGSLayer in map.operationalLayers{
switch layer{
case let fl as AGSFeatureLayer:
print("is feature layer")
case let mil as AGSArcGISMapImageLayer:
print("is AGSArcGISMapImageLayer")
// etc...
}
}
... View more
04-09-2019
08:07 AM
|
0
|
0
|
869
|
|
POST
|
I just tried with 100.4 and it's still an issue. I will enter a bug in our system. Thanks for reporting it
... View more
03-27-2019
02:41 PM
|
1
|
1
|
1857
|
|
POST
|
Can you try 100.4? I think that was potentially fixed.
... View more
03-27-2019
02:26 PM
|
0
|
1
|
1857
|
|
POST
|
Can you provide a simple reproducible case? We do not see this in our testing. You will get location changed notifications when the location changes. And location changes happen once a second. The device is constantly getting location updates, even if you are standing still, the location can change by fractions of a degree). How are you listening for updates? With KVO? If it's with KVO - what are you key values are you observing exactly?
... View more
03-25-2019
10:57 AM
|
0
|
0
|
699
|
|
POST
|
More info was given in person: - a couple hundred unique values - qt sdk
... View more
03-08-2019
10:39 AM
|
0
|
0
|
1295
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-21-2025 11:36 AM | |
| 1 | 01-13-2025 02:52 PM | |
| 1 | 12-04-2018 09:10 AM | |
| 1 | 07-08-2021 07:45 AM | |
| 1 | 06-14-2021 08:03 AM |
| Online Status |
Offline
|
| Date Last Visited |
07-10-2025
01:36 PM
|