arcgis-maps-sdk-swift-samples
arcgis-maps-sdk-swift-samples copied to clipboard
SwiftUI samples demonstrating various capabilities of ArcGIS Maps SDK for Swift
## Description This PR proposes to remove `AnyView` and use `@ViewBuilder` instead, so that we don't need to deal with type-erased `AnyView` which Apple suggests against: https://developer.apple.com/videos/play/wwdc2021/10022/?time=701 ## Linked Issue(s)...
Type annotation should for initializing arrays and dictionaries instead of syntactic sugar. For example, Correct: ``` swift var names: [String] = [] ``` Incorrect: ``` swift var names = [String]()...
## Description This PR adds to swift lint analyzer rules with a bash script to run them. These will be run as part of release verification. The relevant errors/warning for...
## Description This PR implements **`Show device location using indoor positioning`** in `Map` category. - `swift/issues/5653` - `common-samples/pull/3939` ## How To Test Load map and wait for campus to load....
## Description This PR implements `Style geometries with symbols` in `Visualization` category. This is a new sample that replaces the 2D style samples. In our case, just [Style point with...
follow up to #445 , add another image badge to the README that points to the Mac App Store listing as well. Though they share the same URL, it is...
## Create dynamic basemap gallery |picker too wide|picker text not present| |-|-| ||| - Note that when the basemap picker is entered, if you drag and hold the picker items,...
Refactor the method to have no side effects, or move the logic into the task modifier.
Remove the `kmlPlacemark(for:using:)` method, and avoid passing the proxy across "main actor isolated context". Therefore, the `@MainActor` attribute can be removed from the root view. ```swift .onSingleTapGesture { screenPoint, _...