Skip to content

Commit 636ec60

Browse files
authored
Merge pull request #563 from Esri/v.next
[Release] 200.7.0
2 parents 323e567 + 0e12d09 commit 636ec60

File tree

43 files changed

+1683
-422
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1683
-422
lines changed

.swiftlint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ opt_in_rules:
3333
- closure_end_indentation
3434
- closure_spacing
3535
- collection_alignment
36+
- contains_over_filter_count
37+
- contains_over_filter_is_empty
3638
- contains_over_first_not_nil
3739
- convenience_type
38-
- discouraged_direct_init
3940
- discouraged_optional_boolean
4041
- empty_count
4142
- empty_string
@@ -47,7 +48,6 @@ opt_in_rules:
4748
- function_default_parameter_at_end
4849
- identical_operands
4950
- joined_default_parameter
50-
- legacy_random
5151
- let_var_whitespace
5252
- literal_expression_end_indentation
5353
- lower_acl_than_parent
@@ -57,9 +57,9 @@ opt_in_rules:
5757
- multiline_function_chains
5858
- multiline_parameters
5959
- operator_usage_whitespace
60-
- operator_whitespace
6160
- overridden_super_call
6261
- override_in_extension
62+
- prefer_key_path
6363
- prohibited_super_call
6464
- redundant_nil_coalescing
6565
- redundant_type_annotation

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ This repository contains Swift sample code demonstrating the capabilities of the
1818

1919
## Requirements
2020

21-
* [ArcGIS Maps SDK for Swift](https://developers.arcgis.com/swift/) 200.6 (or newer)
22-
* [ArcGIS Maps SDK for Swift Toolkit](https://github.com/Esri/arcgis-maps-sdk-swift-toolkit) 200.6 (or newer)
21+
* [ArcGIS Maps SDK for Swift](https://developers.arcgis.com/swift/) 200.7 (or newer)
22+
* [ArcGIS Maps SDK for Swift Toolkit](https://github.com/Esri/arcgis-maps-sdk-swift-toolkit) 200.7 (or newer)
2323
* Xcode 16.0 (or newer)
2424

2525
The *ArcGIS Maps SDK for Swift Samples app* has a *Target SDK* version of *16.0*, meaning that it can run on devices with *iOS 16.0* or newer.

Samples.xcodeproj/project.pbxproj

Lines changed: 76 additions & 23 deletions
Large diffs are not rendered by default.

Shared/Samples/Add ENC exchange set/AddENCExchangeSetView.swift

Lines changed: 0 additions & 157 deletions
This file was deleted.

Shared/Samples/Add ENC exchange set/README.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

Shared/Samples/Add ENC exchange set/README.metadata.json

Lines changed: 0 additions & 35 deletions
This file was deleted.
-80.4 KB
Binary file not shown.

Shared/Samples/Animate 3D graphic/Animate3DGraphicView.Model.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ extension Animate3DGraphicView {
177177
animation.loadFrames(for: currentMission.label.replacingOccurrences(of: " ", with: ""))
178178

179179
// Create a polyline for the route using the position of each frame.
180-
let points = animation.frames.map { $0.position }
180+
let points = animation.frames.map(\.position)
181181
routeGraphic.geometry = Polyline(points: points)
182182

183183
// Set positions to the starting frame of the mission.

Shared/Samples/Configure clusters/ConfigureClustersView.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ struct ConfigureClustersView: View {
5353
isPresented: $showsPopup
5454
) { [popup] in
5555
PopupView(popup: popup!, isPresented: $showsPopup)
56-
.showCloseButton(true)
5756
.padding()
5857
}
5958
.toolbar {

0 commit comments

Comments
 (0)