|
POST
|
Thanks. I'm able to reproduce this here. We'll look into it.
... View more
06-05-2018
02:09 PM
|
0
|
0
|
2604
|
|
POST
|
Could you provide some more info please so we can try to reproduce this? For example, what are the tileInfo and fullExtent parameters, or does it occur across a range of values?
... View more
06-05-2018
09:45 AM
|
0
|
0
|
2604
|
|
POST
|
Looking at the title of the post, I don't think you're talking about Reference Scale. I think you want to place a circular polygon. You'd do this as follows: Create an AGSPoint for the center of the circle (you're already doing this). Use the AGSGeometryEngine.bufferGeometry() call to create a circle of the desired radius around the center point (note, depending on what you want to achieve you might want to use geodeticBuffer() instead). Create an AGSGraphic using the buffered geometry and an AGSSimpleFillSymbol. Add that graphic to an AGSGraphicOverlay. Ensure that graphics overlay is added to your AGSMapView's graphicsOverlays array. You shouldn't create a new AGSGraphicsOverlay each time you create a circle. An overlay can contain many graphics. I think you're already doing steps 3, 4, and 5 but with a point graphic rather than a polygon graphic.
... View more
06-04-2018
01:15 PM
|
0
|
0
|
1550
|
|
POST
|
Can you provide some more information please? Are you trying to represent a fixed physical area with the circle, or are you talking more about a reference scale? Reference Scale means that the symbol is a specific screen size at a specific map scale, and as you zoom the map the symbol's screen size changes appropriately to match.
... View more
06-04-2018
09:27 AM
|
0
|
0
|
1550
|
|
POST
|
Hi Muruganandham Kuppan, You can find a sample here: arcgis-runtime-samples-ios/RelatedFeaturesViewController.swift Hope that helps. Nick.
... View more
05-29-2018
08:46 AM
|
2
|
4
|
2110
|
|
POST
|
You might also find this answer useful determining the actual domain that's being inherited in a subtype
... View more
05-25-2018
03:08 PM
|
0
|
0
|
3090
|
|
POST
|
Hi Muruganandham, If you're reading a subtype domain from an AGSFeatureType.domains and it's AGSInheritedDomain, you should look up the table's field (from which the domain will be inherited) with AGSArcGISFeatureTable.fieldForName() and read its domain property. Note: The key to the AGSFeatureType.domains dictionary is the field name, so you can just pass that to AGSArcGISFeatureTable.fieldForName(). For example: for featureType in table.featureTypes {
guard let domains = featureType.domains else { continue }
for (name,var domain) in domains {
if domain is AGSInheritedDomain, let baseDomain = table.field(forName: name)?.domain {
print("** \(name): Inherited Domain!")
domain = baseDomain
}
// Now you've got the actual AGSCodedValueDomain or AGSRangeDomain…
}
}
Sorry for the delayed response on this! Hope that helps. Nick.
... View more
05-25-2018
02:44 PM
|
0
|
0
|
1403
|
|
POST
|
If you log the AGSLocation to the console from within the dispatch to main, does it look correct?
... View more
05-23-2018
04:35 PM
|
0
|
4
|
3466
|
|
POST
|
Hi Muruganandham Kuppan, When you call createFeature() you will get an AGSArcGISFeature back. But until you call applyEdits(), that feature just exist locally and does not have an ID that you should use. Once you call applyEdits() to write the feature to the service, then there will be an ID to use. Call AGSArcGISFeature.refreshObjectID() on your handle to the feature to populate the OBJECTID. Cheers, Nick
... View more
05-23-2018
12:11 PM
|
0
|
0
|
3041
|
|
POST
|
I'm still checking to see if this is a requirement, but you could try dispatching the AGSLocationDisplaySource delegate calls to the main thread. If the sessionDataReceived notification is being fired (and so received) on a background thread I could see that could potentially cause problems.
... View more
05-23-2018
04:24 AM
|
0
|
11
|
3466
|
|
POST
|
Hey Shimin Cai, Collector does indeed take a similar approach. For inspiration you could look at this C# NMEA Parser. You would have to translate from C# to Swift but there might be some useful info for you there in building your Location Data Source. Cheers, Nick.
... View more
05-22-2018
05:45 PM
|
0
|
16
|
12648
|
|
POST
|
For anyone else following the thread… After some discussion offline it turns out the layer had a definitionExpression on it which the newly added feature didn't match. So, the new feature was being added to the feature service OK, but was not being displayed in the map. Glad we were able to figure this out, Muruganandham Kuppan!
... View more
05-17-2018
05:56 AM
|
1
|
2
|
3041
|
|
POST
|
Hey Jake, Not sure this is the same as the other app freezing issue we discussed separately yesterday, but I'd like to get a repro case for this. I think I can work with what you've given me access to but I'll let you know if I need more info. Separately, if you wouldn't mind (and to help with the readability of this thread), could you edit your post to include the full stack as another attachment. Maybe just keep the crash back trace? Thanks! Nick.
... View more
05-16-2018
06:11 AM
|
0
|
3
|
3070
|
|
POST
|
Hi Muruganandham Kuppan, I need to find out more about the difference between the two, but this thread might be helpful to you. Cheers, Nick
... View more
05-16-2018
05:42 AM
|
0
|
2
|
1403
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | Thursday | |
| 2 | 2 weeks ago | |
| 4 | 3 weeks ago | |
| 1 | 01-29-2026 09:39 AM | |
| 1 | 12-17-2025 10:12 AM |