arcgis-maps-sdk-swift-samples icon indicating copy to clipboard operation
arcgis-maps-sdk-swift-samples copied to clipboard

SwiftUI samples demonstrating various capabilities of ArcGIS Maps SDK for Swift

Results 44 arcgis-maps-sdk-swift-samples issues
Sort by recently updated
recently updated
newest added

## 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]()...

enhancement
good first issue

## 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...

documentation
good first issue

## Create dynamic basemap gallery |picker too wide|picker text not present| |-|-| |![image](https://github.com/user-attachments/assets/0aa00415-ea43-492e-a13d-4cfc1243b037)|![image](https://github.com/user-attachments/assets/e66efaf2-9147-48e8-ad18-a08454a63d21)| - Note that when the basemap picker is entered, if you drag and hold the picker items,...

bug
good first issue

Refactor the method to have no side effects, or move the logic into the task modifier.

enhancement

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, _...

enhancement