├── .gitignore ├── .spi.yml ├── .swiftlint.yml ├── AppSecrets.swift.masque ├── AuthenticationExample ├── AuthenticationExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AuthenticationExample │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── AuthenticationApp.swift │ ├── AuthenticationExample.entitlements │ ├── HomeView.swift │ ├── Info.plist │ ├── LoadableImageView.swift │ ├── MapItemView.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── ProfileView.swift │ ├── SignInView.swift │ ├── UserView.swift │ └── WebMapsView.swift └── README.md ├── Documentation └── ConfigureAppSecrets.md ├── Examples ├── Examples.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Toolkit Examples.xcscheme ├── Examples │ ├── BasemapGalleryExampleView.swift │ ├── BookmarksExampleView.swift │ ├── CompassExampleView.swift │ ├── FeatureFormExampleView.swift │ ├── FloatingPanelExampleView.swift │ ├── FloorFilterExampleView.swift │ ├── FlyoverExampleView.swift │ ├── OverviewMapExampleView.swift │ ├── PopupExampleView.swift │ ├── ScalebarExampleView.swift │ ├── SearchExampleView.swift │ ├── TableTopExampleView.swift │ ├── UtilityNetworkTraceExampleView.swift │ └── WorldScaleExampleView.swift ├── ExamplesApp │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── iOS_1024.png │ │ │ ├── iOS_120-1.png │ │ │ ├── iOS_120.png │ │ │ ├── iOS_152.png │ │ │ ├── iOS_167.png │ │ │ ├── iOS_180.png │ │ │ ├── iOS_20.png │ │ │ ├── iOS_29.png │ │ │ ├── iOS_40-1.png │ │ │ ├── iOS_40-2.png │ │ │ ├── iOS_40.png │ │ │ ├── iOS_58-1.png │ │ │ ├── iOS_58.png │ │ │ ├── iOS_60.png │ │ │ ├── iOS_80-1.png │ │ │ ├── iOS_80.png │ │ │ └── iOS_87.png │ │ ├── Contents.json │ │ ├── RedMarker.imageset │ │ │ ├── Contents.json │ │ │ ├── RedMarker-icon@1x.png │ │ │ ├── RedMarker-icon@2x.png │ │ │ └── RedMarker-icon@3x.png │ │ └── basemap.imageset │ │ │ ├── Contents.json │ │ │ ├── basemap@1x.png │ │ │ ├── basemap@2x.png │ │ │ └── basemap@3x.png │ ├── Example.swift │ ├── Examples+ListItem.swift │ ├── Examples.entitlements │ ├── Examples.swift │ ├── ExamplesApp.swift │ ├── Info.plist │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json └── README.md ├── JobManagerExample ├── JobManagerExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── JobManagerExample.xcscheme ├── JobManagerExample │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── JobManagerExampleApp.swift │ ├── JobManagerExampleView.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ └── View.swift └── README.md ├── LICENSE ├── OfflineMapAreasExample ├── OfflineMapAreasExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── OfflineMapAreasExample │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Info.plist │ ├── OfflineMapAreasExample.entitlements │ ├── OfflineMapAreasExampleApp.swift │ ├── OfflineMapAreasExampleView.swift │ └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json ├── Package.swift ├── Plugins └── MasqueradePlugin │ └── plugin.swift ├── README.md ├── Scripts └── masquerade ├── Sources └── ArcGISToolkit │ ├── Common │ ├── AttachmentList.swift │ ├── AttachmentModel.swift │ ├── AttachmentPreview.swift │ ├── AttachmentsFeatureElementView.swift │ ├── CameraRequester.swift │ ├── CodeScanner.swift │ ├── EquatableObject.swift │ ├── FlashlightButton.swift │ ├── ThumbnailView.swift │ ├── UtilityAssociationsElement │ │ ├── AssociationsFilterResultModel.swift │ │ ├── UtilityAssociationResultLabel.swift │ │ └── UtilityAssociationsElement.swift │ └── XButton.swift │ ├── Components │ ├── Augmented Reality │ │ ├── FlyoverSceneView.swift │ │ ├── TableTopSceneView.swift │ │ ├── Utilities │ │ │ ├── ARCoachingOverlay.swift │ │ │ ├── ARSwiftUIView.swift │ │ │ ├── CalibrationView.swift │ │ │ ├── GeoTrackingSceneView.swift │ │ │ ├── Joyslider.swift │ │ │ └── WorldTrackingSceneView.swift │ │ └── WorldScaleSceneView.swift │ ├── Authentication │ │ ├── AuthenticationManager.swift │ │ ├── Authenticator.swift │ │ ├── AuthenticatorModifier.swift │ │ ├── CertificatePickerViewModifier.swift │ │ ├── ChallengeContinuation.swift │ │ ├── DocumentPickerView.swift │ │ ├── LoginCredential.swift │ │ ├── LoginViewModifier.swift │ │ ├── NetworkChallengeContinuation.swift │ │ ├── TokenChallengeContinuation.swift │ │ ├── TrustHostViewModifier.swift │ │ └── ValueContinuation.swift │ ├── BasemapGallery │ │ ├── BasemapGallery.swift │ │ ├── BasemapGalleryCell.swift │ │ ├── BasemapGalleryItem.swift │ │ └── BasemapGalleryViewModel.swift │ ├── Bookmarks │ │ ├── Bookmarks.swift │ │ └── BookmarksHeader.swift │ ├── Compass │ │ ├── Compass.swift │ │ ├── CompassBody.swift │ │ ├── CompassDirection.swift │ │ └── Needle.swift │ ├── FeatureFormView │ │ ├── AttachmentHelpers │ │ │ ├── AttachmentCameraController.swift │ │ │ ├── AttachmentImportData.swift │ │ │ ├── AttachmentImportError.swift │ │ │ ├── AttachmentImportMenu.swift │ │ │ ├── AttachmentImportState.swift │ │ │ └── AttachmentPhotoPicker.swift │ │ ├── EmbeddedFeatureFormView.swift │ │ ├── EmbeddedFeatureFormViewModel.swift │ │ ├── FeatureFormToolbar.swift │ │ ├── FeatureFormView+EnvironmentValues.swift │ │ ├── FeatureFormView+ValidationErrorVisibility.swift │ │ ├── FeatureFormView.swift │ │ ├── FormElementPadding.swift │ │ ├── FormInputStyle.swift │ │ ├── NavigationPathItem.swift │ │ ├── PresentedFeatureFormPreferenceKey.swift │ │ └── Subviews │ │ │ ├── FeatureFormGroupedContentView.swift │ │ │ ├── FormElements │ │ │ ├── FieldFormElementView.swift │ │ │ ├── FormElementWrapper │ │ │ │ ├── FormElementFooter.swift │ │ │ │ ├── FormElementHeader.swift │ │ │ │ └── FormElementWrapper.swift │ │ │ ├── GroupFormElementView.swift │ │ │ ├── TextFormElementView.swift │ │ │ └── UtilityAssociationsFormElementView.swift │ │ │ ├── FormFooter.swift │ │ │ ├── FormHeader.swift │ │ │ └── Inputs │ │ │ ├── ComboBoxInput.swift │ │ │ ├── DateTimeInput.swift │ │ │ ├── RadioButtonsInput.swift │ │ │ ├── ReadOnlyInput.swift │ │ │ ├── SwitchInput.swift │ │ │ └── TextInput.swift │ ├── FloatingPanel │ │ ├── FloatingPanel.swift │ │ ├── FloatingPanelDetent.swift │ │ └── FloatingPanelModifier.swift │ ├── FloorFilter │ │ ├── FloorFilter.swift │ │ ├── FloorFilterAutomaticSelectionMode.swift │ │ ├── FloorFilterSelection.swift │ │ ├── FloorFilterViewModel.swift │ │ ├── LevelSelector.swift │ │ └── SiteAndFacilitySelector.swift │ ├── JobManager │ │ └── JobManager.swift │ ├── Offline │ │ ├── OfflineManager.swift │ │ ├── OfflineMapAreaListItemView.swift │ │ ├── OfflineMapAreaMetadataView.swift │ │ ├── OfflineMapAreasView.swift │ │ ├── OfflineMapInfo.swift │ │ ├── OfflineMapViewModel.swift │ │ ├── OnDemand │ │ │ ├── OnDemandConfigurationView.swift │ │ │ ├── OnDemandListItemView.swift │ │ │ ├── OnDemandMapAreaSelectorView.swift │ │ │ └── OnDemandMapModel.swift │ │ ├── Preplanned │ │ │ ├── PreplannedListItemView.swift │ │ │ └── PreplannedMapModel.swift │ │ └── Utilities │ │ │ ├── CacheScale.swift │ │ │ ├── GaugeProgressViewStyle.swift │ │ │ ├── LoadableImageView.swift │ │ │ └── URL+Offline.swift │ ├── OverviewMap.swift │ ├── Popups │ │ ├── EmbeddedPopupView.swift │ │ ├── FieldsPopupElementView.swift │ │ ├── HTMLTextView.swift │ │ ├── MediaPopupElementView.swift │ │ ├── PopupElementHeader.swift │ │ ├── PopupMedia │ │ │ ├── Charts │ │ │ │ ├── BarChart.swift │ │ │ │ ├── ChartData.swift │ │ │ │ ├── ChartMediaView.swift │ │ │ │ ├── LineChart.swift │ │ │ │ ├── PieChart.swift │ │ │ │ └── PieChartModel.swift │ │ │ ├── Images │ │ │ │ └── ImageMediaView.swift │ │ │ ├── MediaDetailView.swift │ │ │ └── PopupMediaFooter.swift │ │ ├── PopupView+Deprecated.swift │ │ ├── PopupView.swift │ │ ├── PopupViewHeader.swift │ │ ├── PopupViewToolbar.swift │ │ ├── TextPopupElementView.swift │ │ └── UtilityAssociationsPopupElementView.swift │ ├── Scalebar │ │ ├── Scalebar.swift │ │ ├── ScalebarLabel.swift │ │ ├── ScalebarModifiers.swift │ │ ├── ScalebarSettings.swift │ │ ├── ScalebarStyle.swift │ │ ├── ScalebarStyleRenderer.swift │ │ ├── ScalebarUnits.swift │ │ └── ScalebarViewModel.swift │ ├── Search │ │ ├── LocatorSearchSource.swift │ │ ├── SearchResult.swift │ │ ├── SearchSource.swift │ │ ├── SearchSuggestion.swift │ │ ├── SearchView.swift │ │ ├── SearchViewModel.swift │ │ └── SmartLocatorSearchSource.swift │ └── UtilityNetworkTrace │ │ ├── UtilityNetworkTrace.swift │ │ ├── UtilityNetworkTraceStartingPoint.swift │ │ ├── UtilityNetworkTraceUserAlert.swift │ │ ├── UtilityNetworkTraceViewModel+Trace.swift │ │ └── UtilityNetworkTraceViewModel.swift │ ├── Documentation.docc │ ├── ArcGISToolkit.md │ ├── AugmentedReality.md │ ├── FloatingPanel.md │ ├── OfflineMapAreas.md │ ├── Resources │ │ ├── Authenticator │ │ │ ├── Authenticator.png │ │ │ ├── AuthenticatorStep1.swift │ │ │ ├── AuthenticatorStep2.swift │ │ │ ├── AuthenticatorStep3.swift │ │ │ └── AuthenticatorStep4.swift │ │ ├── BasemapGallery │ │ │ ├── BasemapGallery.png │ │ │ ├── BasemapGalleryStep1.swift │ │ │ ├── BasemapGalleryStep2.swift │ │ │ ├── BasemapGalleryStep3.swift │ │ │ ├── BasemapGalleryStep4.swift │ │ │ └── BasemapGalleryStep5.swift │ │ ├── Bookmarks │ │ │ ├── Bookmarks.png │ │ │ ├── BookmarksStep1.swift │ │ │ ├── BookmarksStep2.swift │ │ │ ├── BookmarksStep3.swift │ │ │ ├── BookmarksStep4.swift │ │ │ └── Bookmarks~dark.png │ │ ├── Compass │ │ │ ├── Compass.png │ │ │ ├── CompassStep1.swift │ │ │ ├── CompassStep2.swift │ │ │ ├── CompassStep3.swift │ │ │ ├── CompassStep4.swift │ │ │ └── CompassStep5.swift │ │ ├── FeatureFormView │ │ │ ├── FeatureFormView@3x.png │ │ │ ├── FeatureFormViewTutorialSection1Step1.swift │ │ │ ├── FeatureFormViewTutorialSection1Step2.swift │ │ │ ├── FeatureFormViewTutorialSection1Step3.swift │ │ │ ├── FeatureFormViewTutorialSection1Step4.swift │ │ │ ├── FeatureFormViewTutorialSection1Step5.swift │ │ │ ├── FeatureFormViewTutorialSection2Step1.swift │ │ │ ├── FeatureFormViewTutorialSection2Step2.swift │ │ │ ├── FeatureFormViewTutorialSection2Step3.swift │ │ │ ├── FeatureFormViewTutorialSection3Step1.swift │ │ │ ├── FeatureFormViewTutorialSection3Step2.swift │ │ │ ├── FeatureFormViewTutorialSection3Step3.swift │ │ │ ├── FeatureFormViewTutorialSection3Step4.swift │ │ │ └── FeatureFormView~dark@3x.png │ │ ├── FloatingPanel │ │ │ ├── FloatingPanel.png │ │ │ ├── FloatingPanelStep1.swift │ │ │ ├── FloatingPanelStep2.swift │ │ │ ├── FloatingPanelStep3.swift │ │ │ └── FloatingPanelStep4.swift │ │ ├── FloorFilter │ │ │ ├── FloorFilter.png │ │ │ ├── FloorFilterStep1.swift │ │ │ ├── FloorFilterStep2.swift │ │ │ ├── FloorFilterStep3.swift │ │ │ ├── FloorFilterStep4.swift │ │ │ └── FloorFilterStep5.swift │ │ ├── FlyoverSceneView │ │ │ ├── FlyoverSceneView.png │ │ │ ├── FlyoverSceneViewStep1.swift │ │ │ └── FlyoverSceneViewStep2.swift │ │ ├── JobManager │ │ │ ├── JobManagerAppStep1.swift │ │ │ ├── JobManagerAppStep2.swift │ │ │ ├── JobManagerTakeMapOfflineButton.png │ │ │ ├── JobManagerTutorial.png │ │ │ ├── JobManagerTutorialBackgroundFetch.png │ │ │ ├── JobManagerTutorialJobDownload.png │ │ │ ├── JobManagerTutorialJobPoll.png │ │ │ ├── JobManagerTutorialJobStart.png │ │ │ ├── JobManagerTutorialPermittedIdentifiers.png │ │ │ ├── JobManagerViewStep1.swift │ │ │ ├── JobManagerViewStep2.swift │ │ │ ├── JobManagerViewStep3.swift │ │ │ ├── JobManagerViewStep4.swift │ │ │ ├── JobManagerViewStep5.swift │ │ │ ├── JobManagerViewStep6.swift │ │ │ ├── JobManagerViewStep7.swift │ │ │ └── JobManagerViewStep8.swift │ │ ├── OfflineMapAreasView │ │ │ ├── InformationPropertyList.png │ │ │ ├── OfflineMapAreasAppStep1.swift │ │ │ ├── OfflineMapAreasAppStep2.swift │ │ │ ├── OfflineMapAreasView@3x.png │ │ │ ├── OfflineMapAreasViewStep1.swift │ │ │ ├── OfflineMapAreasViewStep2.swift │ │ │ ├── OfflineMapAreasViewStep3.swift │ │ │ ├── OfflineMapAreasViewStep4.swift │ │ │ ├── OfflineMapAreasViewStep5.swift │ │ │ ├── OfflineMapAreasView~dark@3x.png │ │ │ └── OfflineTutorialBackgroundFetch.png │ │ ├── OverviewMap │ │ │ ├── OverviewMap.png │ │ │ ├── OverviewMapForMapStep1.swift │ │ │ ├── OverviewMapForMapStep2.swift │ │ │ ├── OverviewMapForMapStep3.swift │ │ │ ├── OverviewMapForSceneStep1.swift │ │ │ ├── OverviewMapForSceneStep2.swift │ │ │ └── OverviewMapForSceneStep3.swift │ │ ├── PopupView │ │ │ ├── PopupView.png │ │ │ ├── PopupViewStep1.swift │ │ │ ├── PopupViewStep2.swift │ │ │ ├── PopupViewStep3.swift │ │ │ ├── PopupViewStep4.swift │ │ │ ├── PopupViewStep5.swift │ │ │ └── PopupViewStep6.swift │ │ ├── Scalebar │ │ │ ├── Scalebar.png │ │ │ ├── ScalebarStep1.swift │ │ │ ├── ScalebarStep2.swift │ │ │ ├── ScalebarStep3.swift │ │ │ └── ScalebarStep4.swift │ │ ├── SearchView │ │ │ ├── SearchView.png │ │ │ ├── SearchViewStep1.swift │ │ │ ├── SearchViewStep2.swift │ │ │ ├── SearchViewStep3.swift │ │ │ ├── SearchViewStep4.swift │ │ │ ├── SearchViewStep5.swift │ │ │ ├── SearchViewStep6.swift │ │ │ ├── SearchViewStep7.swift │ │ │ └── SearchViewStep8.swift │ │ ├── TableTopSceneView │ │ │ ├── TableTopSceneView.png │ │ │ ├── TableTopSceneViewStep1.swift │ │ │ ├── TableTopSceneViewStep2.swift │ │ │ └── TableTopSceneViewStep3.swift │ │ ├── UtilityNetworkTrace │ │ │ ├── UtilityNetworkTrace-iPad~dark@1x.png │ │ │ ├── UtilityNetworkTrace-iPad~light@1x.png │ │ │ ├── UtilityNetworkTrace-iPhone~dark@1x.png │ │ │ ├── UtilityNetworkTrace-iPhone~light@1x.png │ │ │ ├── UtilityNetworkTraceAdvancedOptions~dark@1x.png │ │ │ ├── UtilityNetworkTraceAdvancedOptions~light@1x.png │ │ │ ├── UtilityNetworkTraceConfigurations~dark@1x.png │ │ │ ├── UtilityNetworkTraceConfigurations~light@1x.png │ │ │ ├── UtilityNetworkTraceResult-iPad~dark@1x.png │ │ │ ├── UtilityNetworkTraceResult-iPad~light@1x.png │ │ │ ├── UtilityNetworkTraceResult-iPhone~dark@1x.png │ │ │ ├── UtilityNetworkTraceResult-iPhone~light@1x.png │ │ │ ├── UtilityNetworkTraceStartingPointDetail-iPad~dark@1x.png │ │ │ ├── UtilityNetworkTraceStartingPointDetail-iPad~light@1x.png │ │ │ ├── UtilityNetworkTraceStep1.swift │ │ │ ├── UtilityNetworkTraceStep2.swift │ │ │ ├── UtilityNetworkTraceStep3.swift │ │ │ └── UtilityNetworkTraceStep4.swift │ │ └── WorldScaleSceneView │ │ │ ├── WorldScaleSceneView.png │ │ │ ├── WorldScaleSceneViewStep1.swift │ │ │ ├── WorldScaleSceneViewStep2.swift │ │ │ ├── WorldScaleSceneViewStep3.swift │ │ │ ├── WorldScaleSceneViewStep4.swift │ │ │ ├── WorldScaleSceneViewStep5.swift │ │ │ ├── WorldScaleSceneViewStep6.swift │ │ │ └── WorldScaleSceneViewStep7.swift │ └── Tutorials │ │ ├── AuthenticatorTutorial.tutorial │ │ ├── BasemapGalleryTutorial.tutorial │ │ ├── BookmarksTutorial.tutorial │ │ ├── CompassTutorial.tutorial │ │ ├── FeatureFormViewTutorial.tutorial │ │ ├── FloatingPanelTutorial.tutorial │ │ ├── FloorFilterTutorial.tutorial │ │ ├── FlyoverSceneViewTutorial.tutorial │ │ ├── JobManagerTutorial.tutorial │ │ ├── OfflineMapAreasViewTutorial.tutorial │ │ ├── OverviewMapTutorial.tutorial │ │ ├── PopupViewTutorial.tutorial │ │ ├── ScalebarTutorial.tutorial │ │ ├── SearchViewTutorial.tutorial │ │ ├── TableTopSceneViewTutorial.tutorial │ │ ├── ToolkitTutorials.tutorial │ │ ├── UtilityNetworkTraceTutorial.tutorial │ │ └── WorldScaleSceneViewTutorial.tutorial │ ├── Extensions │ ├── ArcGIS │ │ ├── ArcGISFeature.swift │ │ ├── AttachmentHelpers │ │ │ ├── AttachmentsFeatureElement.swift │ │ │ ├── AttachmentsFormElement.swift │ │ │ ├── AttachmentsPopupElement.swift │ │ │ ├── FeatureAttachment.swift │ │ │ ├── FormAttachment.swift │ │ │ └── PopupAttachment.swift │ │ ├── Basemap.swift │ │ ├── FieldFormElement.swift │ │ ├── FieldType.swift │ │ ├── FloorFacility.swift │ │ ├── FloorLevel.swift │ │ ├── FloorSite.swift │ │ ├── FormElement.swift │ │ ├── PopupElement.swift │ │ ├── SceneViewProxy.swift │ │ ├── UtilityTraceFunction.FunctionType.swift │ │ ├── UtilityTraceFunctionOutput.swift │ │ └── Viewpoint.swift │ ├── Foundation │ │ ├── Bundle.swift │ │ ├── Error.swift │ │ ├── FileManager.swift │ │ └── FloatingPoint.swift │ ├── OS │ │ └── Logger.swift │ ├── Swift │ │ ├── LocalizedStringResource.swift │ │ ├── MacCatalyst.swift │ │ ├── Result.swift │ │ └── String.swift │ ├── SwiftUI │ │ ├── Angle.swift │ │ ├── Button.swift │ │ ├── Color.swift │ │ ├── DisclosureGroup.swift │ │ ├── EdgeInsets.swift │ │ ├── EnvironmentValues.swift │ │ ├── Text.swift │ │ ├── View+FeatureForm.swift │ │ ├── View+FormInput.swift │ │ ├── View+NavigationBarTitleDisplayMode.swift │ │ ├── View+NavigationTitle.swift │ │ └── View.swift │ └── UIKit │ │ └── UIColor.swift │ ├── PrivacyInfo.xcprivacy │ ├── Resources │ ├── Calcite Icons.xcassets │ │ ├── Contents.json │ │ ├── connection-end-left.imageset │ │ │ ├── Contents.json │ │ │ ├── connection-end-left-16.svg │ │ │ ├── connection-end-left-24.svg │ │ │ └── connection-end-left-32.svg │ │ ├── connection-end-right.imageset │ │ │ ├── Contents.json │ │ │ ├── connection-end-right-16.svg │ │ │ ├── connection-end-right-24.svg │ │ │ └── connection-end-right-32.svg │ │ ├── connection-middle.imageset │ │ │ ├── Contents.json │ │ │ ├── connection-middle-16.svg │ │ │ ├── connection-middle-24.svg │ │ │ └── connection-middle-32.svg │ │ └── connection-to-connection.imageset │ │ │ ├── Contents.json │ │ │ ├── connection-to-connection-16.svg │ │ │ ├── connection-to-connection-24.svg │ │ │ └── connection-to-connection-32.svg │ ├── Images.xcassets │ │ ├── Contents.json │ │ ├── MapPin.imageset │ │ │ ├── Contents.json │ │ │ ├── pin_blank_red@1x.png │ │ │ ├── pin_blank_red@2x.png │ │ │ └── pin_blank_red@3x.png │ │ ├── defaultthumbnail.imageset │ │ │ ├── Contents.json │ │ │ ├── basemap@1x.png │ │ │ ├── basemap@2x.png │ │ │ └── basemap@3x.png │ │ └── pin.imageset │ │ │ ├── Contents.json │ │ │ ├── pin@1x.png │ │ │ ├── pin@2x.png │ │ │ └── pin@3x.png │ ├── ar.lproj │ │ └── Localizable.strings │ ├── bg.lproj │ │ └── Localizable.strings │ ├── bs.lproj │ │ └── Localizable.strings │ ├── ca.lproj │ │ └── Localizable.strings │ ├── cs.lproj │ │ └── Localizable.strings │ ├── da.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── el.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── et.lproj │ │ └── Localizable.strings │ ├── fi.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── he.lproj │ │ └── Localizable.strings │ ├── hr.lproj │ │ └── Localizable.strings │ ├── hu.lproj │ │ └── Localizable.strings │ ├── id.lproj │ │ └── Localizable.strings │ ├── it.lproj │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ ├── ko.lproj │ │ └── Localizable.strings │ ├── lt.lproj │ │ └── Localizable.strings │ ├── lv.lproj │ │ └── Localizable.strings │ ├── nb.lproj │ │ └── Localizable.strings │ ├── nl.lproj │ │ └── Localizable.strings │ ├── pl.lproj │ │ └── Localizable.strings │ ├── pt-BR.lproj │ │ └── Localizable.strings │ ├── pt-PT.lproj │ │ └── Localizable.strings │ ├── ro.lproj │ │ └── Localizable.strings │ ├── ru.lproj │ │ └── Localizable.strings │ ├── sk.lproj │ │ └── Localizable.strings │ ├── sl.lproj │ │ └── Localizable.strings │ ├── sr.lproj │ │ └── Localizable.strings │ ├── sv.lproj │ │ └── Localizable.strings │ ├── th.lproj │ │ └── Localizable.strings │ ├── tr.lproj │ │ └── Localizable.strings │ ├── uk.lproj │ │ └── Localizable.strings │ ├── vi.lproj │ │ └── Localizable.strings │ ├── zh-Hans-CN.lproj │ │ └── Localizable.strings │ ├── zh-Hant-HK.lproj │ │ └── Localizable.strings │ └── zh-Hant-TW.lproj │ │ └── Localizable.strings │ └── Utility │ ├── AsyncImageView.swift │ ├── AsyncImageViewModel.swift │ ├── Carousel.swift │ ├── CredentialInputView.swift │ ├── EsriBorderViewModifier.swift │ ├── InterfaceOrientationObserverView.swift │ ├── KeyboardState.swift │ ├── MarkdownView.swift │ ├── RepresentedUITextView.swift │ └── SearchField.swift ├── Test Runner ├── Test Plans │ ├── UI Tests.xctestplan │ └── Unit Tests.xctestplan ├── Test Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Test Runner.xcscheme ├── Test Runner │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── Test Runner.entitlements │ ├── TestRunnerApp.swift │ ├── TestViews │ │ ├── AttachmentCameraControllerTestView.swift │ │ ├── BasemapGalleryTestView.swift │ │ ├── BookmarksTestViews │ │ │ ├── BookmarksTestCase1View.swift │ │ │ ├── BookmarksTestCase2View.swift │ │ │ ├── BookmarksTestCase3View.swift │ │ │ ├── BookmarksTestCase4View.swift │ │ │ ├── BookmarksTestCase5View.swift │ │ │ ├── BookmarksTestCase6View.swift │ │ │ └── BookmarksTestViews.swift │ │ ├── FeatureFormTestView.swift │ │ ├── FloorFilterTestView.swift │ │ ├── PopupTestView.swift │ │ └── RepresentedUITextViewTestView.swift │ └── Tests.swift ├── TestRunner.xcconfig └── UI Tests │ ├── AttachmentCameraControllerTests.swift │ ├── BasemapGalleryTests.swift │ ├── BookmarksTests.swift │ ├── FeatureFormViewTests.swift │ ├── FloorFilterTests.swift │ ├── PopupViewTests.swift │ └── RepresentedUITextViewTests.swift ├── Tests └── ArcGISToolkitTests │ ├── ARTests.swift │ ├── AngleTests.swift │ ├── AttachmentsFeatureElementDisplayTypeTests.swift │ ├── AuthenticationManagerTests.swift │ ├── AuthenticatorTests.swift │ ├── BasemapGalleryItemTests.swift │ ├── BasemapGalleryViewModelTests.swift │ ├── BookmarksTests.swift │ ├── CertificatePickerViewModelTests.swift │ ├── CompassDirectionTests.swift │ ├── CompassTests.swift │ ├── FeatureAttachmentKindTests.swift │ ├── FloorFilterViewModelTests.swift │ ├── JobManagerTests.swift │ ├── LocatorSearchSourceTests.swift │ ├── LoginViewModifierTests.swift │ ├── NetworkChallengeContinuationTests.swift │ ├── OnDemandMapModelStatusTests.swift │ ├── OnDemandMapModelTests.swift │ ├── PreplannedMapModelStatusTests.swift │ ├── PreplannedMapModelTests.swift │ ├── Publisher.swift │ ├── ResultTests.swift │ ├── ScalebarTests.swift │ ├── SearchViewModelTests.swift │ ├── SmartLocatorSearchSourceTests.swift │ ├── Test Support │ ├── Data │ │ └── Network Mocking │ │ │ └── BookmarksTests │ │ │ └── testBookmarksWithGeoModel.sqlite │ ├── Extensions │ │ ├── Task.swift │ │ └── XCTest │ │ │ └── XCTestCase+ArcGISURLSession.swift │ └── Utility │ │ └── NetworkChallengeHandler.swift │ ├── TokenChallengeContinuationTests.swift │ ├── TrustHostViewModifierTests.swift │ ├── UtilityNetworkTraceViewModelTests.swift │ ├── ValueContinuationTests.swift │ └── ViewpointTests.swift └── t9nmanifest.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /AppSecrets.swift.masque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AppSecrets.swift.masque -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/AuthenticationApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/AuthenticationApp.swift -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/AuthenticationExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/AuthenticationExample.entitlements -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/HomeView.swift -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/Info.plist -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/LoadableImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/LoadableImageView.swift -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/MapItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/MapItemView.swift -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/ProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/ProfileView.swift -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/SignInView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/SignInView.swift -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/UserView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/UserView.swift -------------------------------------------------------------------------------- /AuthenticationExample/AuthenticationExample/WebMapsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/AuthenticationExample/WebMapsView.swift -------------------------------------------------------------------------------- /AuthenticationExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/AuthenticationExample/README.md -------------------------------------------------------------------------------- /Documentation/ConfigureAppSecrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Documentation/ConfigureAppSecrets.md -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/xcshareddata/xcschemes/Toolkit Examples.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples.xcodeproj/xcshareddata/xcschemes/Toolkit Examples.xcscheme -------------------------------------------------------------------------------- /Examples/Examples/BasemapGalleryExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/BasemapGalleryExampleView.swift -------------------------------------------------------------------------------- /Examples/Examples/BookmarksExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/BookmarksExampleView.swift -------------------------------------------------------------------------------- /Examples/Examples/CompassExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/CompassExampleView.swift -------------------------------------------------------------------------------- /Examples/Examples/FeatureFormExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/FeatureFormExampleView.swift -------------------------------------------------------------------------------- /Examples/Examples/FloatingPanelExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/FloatingPanelExampleView.swift -------------------------------------------------------------------------------- /Examples/Examples/FloorFilterExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/FloorFilterExampleView.swift -------------------------------------------------------------------------------- /Examples/Examples/FlyoverExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/FlyoverExampleView.swift -------------------------------------------------------------------------------- /Examples/Examples/OverviewMapExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/OverviewMapExampleView.swift -------------------------------------------------------------------------------- /Examples/Examples/PopupExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/PopupExampleView.swift -------------------------------------------------------------------------------- /Examples/Examples/ScalebarExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/ScalebarExampleView.swift -------------------------------------------------------------------------------- /Examples/Examples/SearchExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/SearchExampleView.swift -------------------------------------------------------------------------------- /Examples/Examples/TableTopExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/TableTopExampleView.swift -------------------------------------------------------------------------------- /Examples/Examples/UtilityNetworkTraceExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/UtilityNetworkTraceExampleView.swift -------------------------------------------------------------------------------- /Examples/Examples/WorldScaleExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/Examples/WorldScaleExampleView.swift -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_1024.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_120-1.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_120.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_152.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_167.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_180.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_20.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_29.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_40-1.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_40-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_40-2.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_40.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_58-1.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_58.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_60.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_80-1.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_80.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/AppIcon.appiconset/iOS_87.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/RedMarker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/RedMarker.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/RedMarker.imageset/RedMarker-icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/RedMarker.imageset/RedMarker-icon@1x.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/RedMarker.imageset/RedMarker-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/RedMarker.imageset/RedMarker-icon@2x.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/RedMarker.imageset/RedMarker-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/RedMarker.imageset/RedMarker-icon@3x.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/basemap.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/basemap.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/basemap.imageset/basemap@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/basemap.imageset/basemap@1x.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/basemap.imageset/basemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/basemap.imageset/basemap@2x.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Assets.xcassets/basemap.imageset/basemap@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Assets.xcassets/basemap.imageset/basemap@3x.png -------------------------------------------------------------------------------- /Examples/ExamplesApp/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Example.swift -------------------------------------------------------------------------------- /Examples/ExamplesApp/Examples+ListItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Examples+ListItem.swift -------------------------------------------------------------------------------- /Examples/ExamplesApp/Examples.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Examples.entitlements -------------------------------------------------------------------------------- /Examples/ExamplesApp/Examples.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Examples.swift -------------------------------------------------------------------------------- /Examples/ExamplesApp/ExamplesApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/ExamplesApp.swift -------------------------------------------------------------------------------- /Examples/ExamplesApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Info.plist -------------------------------------------------------------------------------- /Examples/ExamplesApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/ExamplesApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Examples/README.md -------------------------------------------------------------------------------- /JobManagerExample/JobManagerExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/JobManagerExample/JobManagerExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JobManagerExample/JobManagerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/JobManagerExample/JobManagerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /JobManagerExample/JobManagerExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/JobManagerExample/JobManagerExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /JobManagerExample/JobManagerExample.xcodeproj/xcshareddata/xcschemes/JobManagerExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/JobManagerExample/JobManagerExample.xcodeproj/xcshareddata/xcschemes/JobManagerExample.xcscheme -------------------------------------------------------------------------------- /JobManagerExample/JobManagerExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/JobManagerExample/JobManagerExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /JobManagerExample/JobManagerExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/JobManagerExample/JobManagerExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /JobManagerExample/JobManagerExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/JobManagerExample/JobManagerExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /JobManagerExample/JobManagerExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/JobManagerExample/JobManagerExample/Info.plist -------------------------------------------------------------------------------- /JobManagerExample/JobManagerExample/JobManagerExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/JobManagerExample/JobManagerExample/JobManagerExampleApp.swift -------------------------------------------------------------------------------- /JobManagerExample/JobManagerExample/JobManagerExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/JobManagerExample/JobManagerExample/JobManagerExampleView.swift -------------------------------------------------------------------------------- /JobManagerExample/JobManagerExample/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/JobManagerExample/JobManagerExample/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /JobManagerExample/JobManagerExample/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/JobManagerExample/JobManagerExample/View.swift -------------------------------------------------------------------------------- /JobManagerExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/JobManagerExample/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /OfflineMapAreasExample/OfflineMapAreasExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/OfflineMapAreasExample/OfflineMapAreasExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OfflineMapAreasExample/OfflineMapAreasExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/OfflineMapAreasExample/OfflineMapAreasExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OfflineMapAreasExample/OfflineMapAreasExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/OfflineMapAreasExample/OfflineMapAreasExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /OfflineMapAreasExample/OfflineMapAreasExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/OfflineMapAreasExample/OfflineMapAreasExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /OfflineMapAreasExample/OfflineMapAreasExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/OfflineMapAreasExample/OfflineMapAreasExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /OfflineMapAreasExample/OfflineMapAreasExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/OfflineMapAreasExample/OfflineMapAreasExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OfflineMapAreasExample/OfflineMapAreasExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/OfflineMapAreasExample/OfflineMapAreasExample/Info.plist -------------------------------------------------------------------------------- /OfflineMapAreasExample/OfflineMapAreasExample/OfflineMapAreasExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/OfflineMapAreasExample/OfflineMapAreasExample/OfflineMapAreasExample.entitlements -------------------------------------------------------------------------------- /OfflineMapAreasExample/OfflineMapAreasExample/OfflineMapAreasExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/OfflineMapAreasExample/OfflineMapAreasExample/OfflineMapAreasExampleApp.swift -------------------------------------------------------------------------------- /OfflineMapAreasExample/OfflineMapAreasExample/OfflineMapAreasExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/OfflineMapAreasExample/OfflineMapAreasExample/OfflineMapAreasExampleView.swift -------------------------------------------------------------------------------- /OfflineMapAreasExample/OfflineMapAreasExample/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/OfflineMapAreasExample/OfflineMapAreasExample/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Package.swift -------------------------------------------------------------------------------- /Plugins/MasqueradePlugin/plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Plugins/MasqueradePlugin/plugin.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/masquerade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Scripts/masquerade -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Common/AttachmentList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Common/AttachmentList.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Common/AttachmentModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Common/AttachmentModel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Common/AttachmentPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Common/AttachmentPreview.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Common/AttachmentsFeatureElementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Common/AttachmentsFeatureElementView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Common/CameraRequester.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Common/CameraRequester.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Common/CodeScanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Common/CodeScanner.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Common/EquatableObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Common/EquatableObject.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Common/FlashlightButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Common/FlashlightButton.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Common/ThumbnailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Common/ThumbnailView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Common/UtilityAssociationsElement/AssociationsFilterResultModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Common/UtilityAssociationsElement/AssociationsFilterResultModel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Common/UtilityAssociationsElement/UtilityAssociationResultLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Common/UtilityAssociationsElement/UtilityAssociationResultLabel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Common/UtilityAssociationsElement/UtilityAssociationsElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Common/UtilityAssociationsElement/UtilityAssociationsElement.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Common/XButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Common/XButton.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Augmented Reality/FlyoverSceneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Augmented Reality/FlyoverSceneView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Augmented Reality/TableTopSceneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Augmented Reality/TableTopSceneView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Augmented Reality/Utilities/ARCoachingOverlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Augmented Reality/Utilities/ARCoachingOverlay.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Augmented Reality/Utilities/ARSwiftUIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Augmented Reality/Utilities/ARSwiftUIView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Augmented Reality/Utilities/CalibrationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Augmented Reality/Utilities/CalibrationView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Augmented Reality/Utilities/GeoTrackingSceneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Augmented Reality/Utilities/GeoTrackingSceneView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Augmented Reality/Utilities/Joyslider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Augmented Reality/Utilities/Joyslider.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Augmented Reality/Utilities/WorldTrackingSceneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Augmented Reality/Utilities/WorldTrackingSceneView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Augmented Reality/WorldScaleSceneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Augmented Reality/WorldScaleSceneView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Authentication/AuthenticationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Authentication/AuthenticationManager.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Authentication/Authenticator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Authentication/Authenticator.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Authentication/AuthenticatorModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Authentication/AuthenticatorModifier.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Authentication/CertificatePickerViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Authentication/CertificatePickerViewModifier.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Authentication/ChallengeContinuation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Authentication/ChallengeContinuation.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Authentication/DocumentPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Authentication/DocumentPickerView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Authentication/LoginCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Authentication/LoginCredential.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Authentication/LoginViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Authentication/LoginViewModifier.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Authentication/NetworkChallengeContinuation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Authentication/NetworkChallengeContinuation.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Authentication/TokenChallengeContinuation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Authentication/TokenChallengeContinuation.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Authentication/TrustHostViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Authentication/TrustHostViewModifier.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Authentication/ValueContinuation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Authentication/ValueContinuation.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/BasemapGallery/BasemapGallery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/BasemapGallery/BasemapGallery.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/BasemapGallery/BasemapGalleryCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/BasemapGallery/BasemapGalleryCell.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/BasemapGallery/BasemapGalleryItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/BasemapGallery/BasemapGalleryItem.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/BasemapGallery/BasemapGalleryViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/BasemapGallery/BasemapGalleryViewModel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Bookmarks/Bookmarks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Bookmarks/Bookmarks.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Bookmarks/BookmarksHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Bookmarks/BookmarksHeader.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Compass/Compass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Compass/Compass.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Compass/CompassBody.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Compass/CompassBody.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Compass/CompassDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Compass/CompassDirection.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Compass/Needle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Compass/Needle.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/AttachmentHelpers/AttachmentCameraController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/AttachmentHelpers/AttachmentCameraController.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/AttachmentHelpers/AttachmentImportData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/AttachmentHelpers/AttachmentImportData.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/AttachmentHelpers/AttachmentImportError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/AttachmentHelpers/AttachmentImportError.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/AttachmentHelpers/AttachmentImportMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/AttachmentHelpers/AttachmentImportMenu.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/AttachmentHelpers/AttachmentImportState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/AttachmentHelpers/AttachmentImportState.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/AttachmentHelpers/AttachmentPhotoPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/AttachmentHelpers/AttachmentPhotoPicker.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/EmbeddedFeatureFormView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/EmbeddedFeatureFormView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/EmbeddedFeatureFormViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/EmbeddedFeatureFormViewModel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/FeatureFormToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/FeatureFormToolbar.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/FeatureFormView+EnvironmentValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/FeatureFormView+EnvironmentValues.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/FeatureFormView+ValidationErrorVisibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/FeatureFormView+ValidationErrorVisibility.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/FeatureFormView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/FeatureFormView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/FormElementPadding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/FormElementPadding.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/FormInputStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/FormInputStyle.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/NavigationPathItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/NavigationPathItem.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/PresentedFeatureFormPreferenceKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/PresentedFeatureFormPreferenceKey.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FeatureFormGroupedContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FeatureFormGroupedContentView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/FieldFormElementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/FieldFormElementView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/FormElementWrapper/FormElementFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/FormElementWrapper/FormElementFooter.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/FormElementWrapper/FormElementHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/FormElementWrapper/FormElementHeader.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/FormElementWrapper/FormElementWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/FormElementWrapper/FormElementWrapper.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/GroupFormElementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/GroupFormElementView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/TextFormElementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/TextFormElementView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/UtilityAssociationsFormElementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormElements/UtilityAssociationsFormElementView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormFooter.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/FormHeader.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/Inputs/ComboBoxInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/Inputs/ComboBoxInput.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/Inputs/DateTimeInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/Inputs/DateTimeInput.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/Inputs/RadioButtonsInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/Inputs/RadioButtonsInput.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/Inputs/ReadOnlyInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/Inputs/ReadOnlyInput.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/Inputs/SwitchInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/Inputs/SwitchInput.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/Inputs/TextInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/Inputs/TextInput.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FloatingPanel/FloatingPanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FloatingPanel/FloatingPanel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FloatingPanel/FloatingPanelDetent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FloatingPanel/FloatingPanelDetent.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FloatingPanel/FloatingPanelModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FloatingPanel/FloatingPanelModifier.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FloorFilter/FloorFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FloorFilter/FloorFilter.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FloorFilter/FloorFilterAutomaticSelectionMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FloorFilter/FloorFilterAutomaticSelectionMode.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FloorFilter/FloorFilterSelection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FloorFilter/FloorFilterSelection.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FloorFilter/FloorFilterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FloorFilter/FloorFilterViewModel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FloorFilter/LevelSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FloorFilter/LevelSelector.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/FloorFilter/SiteAndFacilitySelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/FloorFilter/SiteAndFacilitySelector.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/JobManager/JobManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/JobManager/JobManager.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/OfflineManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/OfflineManager.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/OfflineMapAreaListItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/OfflineMapAreaListItemView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/OfflineMapAreaMetadataView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/OfflineMapAreaMetadataView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/OfflineMapAreasView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/OfflineMapAreasView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/OfflineMapInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/OfflineMapInfo.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/OfflineMapViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/OfflineMapViewModel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/OnDemand/OnDemandConfigurationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/OnDemand/OnDemandConfigurationView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/OnDemand/OnDemandListItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/OnDemand/OnDemandListItemView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/OnDemand/OnDemandMapAreaSelectorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/OnDemand/OnDemandMapAreaSelectorView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/OnDemand/OnDemandMapModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/OnDemand/OnDemandMapModel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/Preplanned/PreplannedListItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/Preplanned/PreplannedListItemView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/Preplanned/PreplannedMapModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/Preplanned/PreplannedMapModel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/Utilities/CacheScale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/Utilities/CacheScale.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/Utilities/GaugeProgressViewStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/Utilities/GaugeProgressViewStyle.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/Utilities/LoadableImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/Utilities/LoadableImageView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Offline/Utilities/URL+Offline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Offline/Utilities/URL+Offline.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/OverviewMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/OverviewMap.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/EmbeddedPopupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/EmbeddedPopupView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/FieldsPopupElementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/FieldsPopupElementView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/HTMLTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/HTMLTextView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/MediaPopupElementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/MediaPopupElementView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupElementHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupElementHeader.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupMedia/Charts/BarChart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupMedia/Charts/BarChart.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupMedia/Charts/ChartData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupMedia/Charts/ChartData.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupMedia/Charts/ChartMediaView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupMedia/Charts/ChartMediaView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupMedia/Charts/LineChart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupMedia/Charts/LineChart.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupMedia/Charts/PieChart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupMedia/Charts/PieChart.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupMedia/Charts/PieChartModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupMedia/Charts/PieChartModel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupMedia/Images/ImageMediaView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupMedia/Images/ImageMediaView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupMedia/MediaDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupMedia/MediaDetailView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupMedia/PopupMediaFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupMedia/PopupMediaFooter.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupView+Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupView+Deprecated.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupViewHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupViewHeader.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/PopupViewToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/PopupViewToolbar.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/TextPopupElementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/TextPopupElementView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Popups/UtilityAssociationsPopupElementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Popups/UtilityAssociationsPopupElementView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Scalebar/Scalebar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Scalebar/Scalebar.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Scalebar/ScalebarLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Scalebar/ScalebarLabel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Scalebar/ScalebarModifiers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Scalebar/ScalebarModifiers.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Scalebar/ScalebarSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Scalebar/ScalebarSettings.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Scalebar/ScalebarStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Scalebar/ScalebarStyle.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Scalebar/ScalebarStyleRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Scalebar/ScalebarStyleRenderer.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Scalebar/ScalebarUnits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Scalebar/ScalebarUnits.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Scalebar/ScalebarViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Scalebar/ScalebarViewModel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Search/LocatorSearchSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Search/LocatorSearchSource.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Search/SearchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Search/SearchResult.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Search/SearchSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Search/SearchSource.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Search/SearchSuggestion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Search/SearchSuggestion.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Search/SearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Search/SearchView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Search/SearchViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Search/SearchViewModel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/Search/SmartLocatorSearchSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/Search/SmartLocatorSearchSource.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/UtilityNetworkTrace/UtilityNetworkTrace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/UtilityNetworkTrace/UtilityNetworkTrace.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/UtilityNetworkTrace/UtilityNetworkTraceStartingPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/UtilityNetworkTrace/UtilityNetworkTraceStartingPoint.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/UtilityNetworkTrace/UtilityNetworkTraceUserAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/UtilityNetworkTrace/UtilityNetworkTraceUserAlert.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/UtilityNetworkTrace/UtilityNetworkTraceViewModel+Trace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/UtilityNetworkTrace/UtilityNetworkTraceViewModel+Trace.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Components/UtilityNetworkTrace/UtilityNetworkTraceViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Components/UtilityNetworkTrace/UtilityNetworkTraceViewModel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/ArcGISToolkit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/ArcGISToolkit.md -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/AugmentedReality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/AugmentedReality.md -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/FloatingPanel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/FloatingPanel.md -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/OfflineMapAreas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/OfflineMapAreas.md -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Authenticator/Authenticator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Authenticator/Authenticator.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Authenticator/AuthenticatorStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Authenticator/AuthenticatorStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Authenticator/AuthenticatorStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Authenticator/AuthenticatorStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Authenticator/AuthenticatorStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Authenticator/AuthenticatorStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Authenticator/AuthenticatorStep4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Authenticator/AuthenticatorStep4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/BasemapGallery/BasemapGallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/BasemapGallery/BasemapGallery.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/BasemapGallery/BasemapGalleryStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/BasemapGallery/BasemapGalleryStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/BasemapGallery/BasemapGalleryStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/BasemapGallery/BasemapGalleryStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/BasemapGallery/BasemapGalleryStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/BasemapGallery/BasemapGalleryStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/BasemapGallery/BasemapGalleryStep4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/BasemapGallery/BasemapGalleryStep4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/BasemapGallery/BasemapGalleryStep5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/BasemapGallery/BasemapGalleryStep5.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Bookmarks/Bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Bookmarks/Bookmarks.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Bookmarks/BookmarksStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Bookmarks/BookmarksStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Bookmarks/BookmarksStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Bookmarks/BookmarksStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Bookmarks/BookmarksStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Bookmarks/BookmarksStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Bookmarks/BookmarksStep4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Bookmarks/BookmarksStep4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Bookmarks/Bookmarks~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Bookmarks/Bookmarks~dark.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Compass/Compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Compass/Compass.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Compass/CompassStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Compass/CompassStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Compass/CompassStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Compass/CompassStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Compass/CompassStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Compass/CompassStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Compass/CompassStep4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Compass/CompassStep4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Compass/CompassStep5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Compass/CompassStep5.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormView@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormView@3x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection1Step1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection1Step1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection1Step2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection1Step2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection1Step3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection1Step3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection1Step4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection1Step4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection1Step5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection1Step5.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection2Step1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection2Step1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection2Step2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection2Step2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection2Step3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection2Step3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection3Step1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection3Step1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection3Step2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection3Step2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection3Step3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection3Step3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection3Step4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormViewTutorialSection3Step4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormView~dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FeatureFormView/FeatureFormView~dark@3x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FloatingPanel/FloatingPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FloatingPanel/FloatingPanel.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FloatingPanel/FloatingPanelStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FloatingPanel/FloatingPanelStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FloatingPanel/FloatingPanelStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FloatingPanel/FloatingPanelStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FloatingPanel/FloatingPanelStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FloatingPanel/FloatingPanelStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FloatingPanel/FloatingPanelStep4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FloatingPanel/FloatingPanelStep4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FloorFilter/FloorFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FloorFilter/FloorFilter.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FloorFilter/FloorFilterStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FloorFilter/FloorFilterStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FloorFilter/FloorFilterStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FloorFilter/FloorFilterStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FloorFilter/FloorFilterStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FloorFilter/FloorFilterStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FloorFilter/FloorFilterStep4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FloorFilter/FloorFilterStep4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FloorFilter/FloorFilterStep5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FloorFilter/FloorFilterStep5.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FlyoverSceneView/FlyoverSceneView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FlyoverSceneView/FlyoverSceneView.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FlyoverSceneView/FlyoverSceneViewStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FlyoverSceneView/FlyoverSceneViewStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/FlyoverSceneView/FlyoverSceneViewStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/FlyoverSceneView/FlyoverSceneViewStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerAppStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerAppStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerAppStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerAppStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTakeMapOfflineButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTakeMapOfflineButton.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTutorial.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTutorialBackgroundFetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTutorialBackgroundFetch.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTutorialJobDownload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTutorialJobDownload.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTutorialJobPoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTutorialJobPoll.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTutorialJobStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTutorialJobStart.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTutorialPermittedIdentifiers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerTutorialPermittedIdentifiers.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep5.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep6.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep7.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep7.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep8.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/JobManager/JobManagerViewStep8.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/InformationPropertyList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/InformationPropertyList.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasAppStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasAppStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasAppStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasAppStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasView@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasView@3x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasViewStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasViewStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasViewStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasViewStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasViewStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasViewStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasViewStep4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasViewStep4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasViewStep5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasViewStep5.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasView~dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineMapAreasView~dark@3x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineTutorialBackgroundFetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OfflineMapAreasView/OfflineTutorialBackgroundFetch.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMap.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMapForMapStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMapForMapStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMapForMapStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMapForMapStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMapForMapStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMapForMapStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMapForSceneStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMapForSceneStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMapForSceneStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMapForSceneStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMapForSceneStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/OverviewMap/OverviewMapForSceneStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupView.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupViewStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupViewStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupViewStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupViewStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupViewStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupViewStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupViewStep4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupViewStep4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupViewStep5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupViewStep5.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupViewStep6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/PopupView/PopupViewStep6.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Scalebar/Scalebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Scalebar/Scalebar.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Scalebar/ScalebarStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Scalebar/ScalebarStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Scalebar/ScalebarStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Scalebar/ScalebarStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Scalebar/ScalebarStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Scalebar/ScalebarStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/Scalebar/ScalebarStep4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/Scalebar/ScalebarStep4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchView.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep5.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep6.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep7.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep7.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep8.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/SearchView/SearchViewStep8.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/TableTopSceneView/TableTopSceneView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/TableTopSceneView/TableTopSceneView.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/TableTopSceneView/TableTopSceneViewStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/TableTopSceneView/TableTopSceneViewStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/TableTopSceneView/TableTopSceneViewStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/TableTopSceneView/TableTopSceneViewStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/TableTopSceneView/TableTopSceneViewStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/TableTopSceneView/TableTopSceneViewStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTrace-iPad~dark@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTrace-iPad~dark@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTrace-iPad~light@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTrace-iPad~light@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTrace-iPhone~dark@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTrace-iPhone~dark@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTrace-iPhone~light@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTrace-iPhone~light@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceAdvancedOptions~dark@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceAdvancedOptions~dark@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceAdvancedOptions~light@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceAdvancedOptions~light@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceConfigurations~dark@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceConfigurations~dark@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceConfigurations~light@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceConfigurations~light@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceResult-iPad~dark@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceResult-iPad~dark@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceResult-iPad~light@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceResult-iPad~light@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceResult-iPhone~dark@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceResult-iPhone~dark@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceResult-iPhone~light@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceResult-iPhone~light@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceStartingPointDetail-iPad~dark@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceStartingPointDetail-iPad~dark@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceStartingPointDetail-iPad~light@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceStartingPointDetail-iPad~light@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceStep4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/UtilityNetworkTrace/UtilityNetworkTraceStep4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneView.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep1.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep2.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep3.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep4.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep5.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep6.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep7.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Resources/WorldScaleSceneView/WorldScaleSceneViewStep7.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/AuthenticatorTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/AuthenticatorTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/BasemapGalleryTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/BasemapGalleryTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/BookmarksTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/BookmarksTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/CompassTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/CompassTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/FeatureFormViewTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/FeatureFormViewTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/FloatingPanelTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/FloatingPanelTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/FloorFilterTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/FloorFilterTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/FlyoverSceneViewTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/FlyoverSceneViewTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/JobManagerTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/JobManagerTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/OfflineMapAreasViewTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/OfflineMapAreasViewTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/OverviewMapTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/OverviewMapTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/PopupViewTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/PopupViewTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/ScalebarTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/ScalebarTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/SearchViewTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/SearchViewTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/TableTopSceneViewTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/TableTopSceneViewTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/ToolkitTutorials.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/ToolkitTutorials.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/UtilityNetworkTraceTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/UtilityNetworkTraceTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Documentation.docc/Tutorials/WorldScaleSceneViewTutorial.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Documentation.docc/Tutorials/WorldScaleSceneViewTutorial.tutorial -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/ArcGISFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/ArcGISFeature.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/AttachmentHelpers/AttachmentsFeatureElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/AttachmentHelpers/AttachmentsFeatureElement.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/AttachmentHelpers/AttachmentsFormElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/AttachmentHelpers/AttachmentsFormElement.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/AttachmentHelpers/AttachmentsPopupElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/AttachmentHelpers/AttachmentsPopupElement.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/AttachmentHelpers/FeatureAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/AttachmentHelpers/FeatureAttachment.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/AttachmentHelpers/FormAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/AttachmentHelpers/FormAttachment.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/AttachmentHelpers/PopupAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/AttachmentHelpers/PopupAttachment.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/Basemap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/Basemap.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/FieldFormElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/FieldFormElement.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/FieldType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/FieldType.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/FloorFacility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/FloorFacility.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/FloorLevel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/FloorLevel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/FloorSite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/FloorSite.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/FormElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/FormElement.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/PopupElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/PopupElement.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/SceneViewProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/SceneViewProxy.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/UtilityTraceFunction.FunctionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/UtilityTraceFunction.FunctionType.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/UtilityTraceFunctionOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/UtilityTraceFunctionOutput.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/ArcGIS/Viewpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/ArcGIS/Viewpoint.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/Foundation/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/Foundation/Bundle.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/Foundation/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/Foundation/Error.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/Foundation/FileManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/Foundation/FileManager.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/Foundation/FloatingPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/Foundation/FloatingPoint.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/OS/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/OS/Logger.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/Swift/LocalizedStringResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/Swift/LocalizedStringResource.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/Swift/MacCatalyst.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/Swift/MacCatalyst.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/Swift/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/Swift/Result.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/Swift/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/Swift/String.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/SwiftUI/Angle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/SwiftUI/Angle.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/SwiftUI/Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/SwiftUI/Button.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/SwiftUI/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/SwiftUI/Color.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/SwiftUI/DisclosureGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/SwiftUI/DisclosureGroup.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/SwiftUI/EdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/SwiftUI/EdgeInsets.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/SwiftUI/EnvironmentValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/SwiftUI/EnvironmentValues.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/SwiftUI/Text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/SwiftUI/Text.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/SwiftUI/View+FeatureForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/SwiftUI/View+FeatureForm.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/SwiftUI/View+FormInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/SwiftUI/View+FormInput.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/SwiftUI/View+NavigationBarTitleDisplayMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/SwiftUI/View+NavigationBarTitleDisplayMode.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/SwiftUI/View+NavigationTitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/SwiftUI/View+NavigationTitle.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/SwiftUI/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/SwiftUI/View.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Extensions/UIKit/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Extensions/UIKit/UIColor.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-left.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-left.imageset/connection-end-left-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-left.imageset/connection-end-left-16.svg -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-left.imageset/connection-end-left-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-left.imageset/connection-end-left-24.svg -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-left.imageset/connection-end-left-32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-left.imageset/connection-end-left-32.svg -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-right.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-right.imageset/connection-end-right-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-right.imageset/connection-end-right-16.svg -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-right.imageset/connection-end-right-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-right.imageset/connection-end-right-24.svg -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-right.imageset/connection-end-right-32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-end-right.imageset/connection-end-right-32.svg -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-middle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-middle.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-middle.imageset/connection-middle-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-middle.imageset/connection-middle-16.svg -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-middle.imageset/connection-middle-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-middle.imageset/connection-middle-24.svg -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-middle.imageset/connection-middle-32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-middle.imageset/connection-middle-32.svg -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-to-connection.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-to-connection.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-to-connection.imageset/connection-to-connection-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-to-connection.imageset/connection-to-connection-16.svg -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-to-connection.imageset/connection-to-connection-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-to-connection.imageset/connection-to-connection-24.svg -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-to-connection.imageset/connection-to-connection-32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Calcite Icons.xcassets/connection-to-connection.imageset/connection-to-connection-32.svg -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Images.xcassets/MapPin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Images.xcassets/MapPin.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Images.xcassets/MapPin.imageset/pin_blank_red@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Images.xcassets/MapPin.imageset/pin_blank_red@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Images.xcassets/MapPin.imageset/pin_blank_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Images.xcassets/MapPin.imageset/pin_blank_red@2x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Images.xcassets/MapPin.imageset/pin_blank_red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Images.xcassets/MapPin.imageset/pin_blank_red@3x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Images.xcassets/defaultthumbnail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Images.xcassets/defaultthumbnail.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Images.xcassets/defaultthumbnail.imageset/basemap@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Images.xcassets/defaultthumbnail.imageset/basemap@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Images.xcassets/defaultthumbnail.imageset/basemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Images.xcassets/defaultthumbnail.imageset/basemap@2x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Images.xcassets/defaultthumbnail.imageset/basemap@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Images.xcassets/defaultthumbnail.imageset/basemap@3x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Images.xcassets/pin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Images.xcassets/pin.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Images.xcassets/pin.imageset/pin@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Images.xcassets/pin.imageset/pin@1x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Images.xcassets/pin.imageset/pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Images.xcassets/pin.imageset/pin@2x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/Images.xcassets/pin.imageset/pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/Images.xcassets/pin.imageset/pin@3x.png -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/bg.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/bs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/bs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/et.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/et.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/lt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/lt.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/lv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/lv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/sl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/sl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/sr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/sr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/zh-Hans-CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/zh-Hans-CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/zh-Hant-HK.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/zh-Hant-HK.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Resources/zh-Hant-TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Resources/zh-Hant-TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Utility/AsyncImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Utility/AsyncImageView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Utility/AsyncImageViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Utility/AsyncImageViewModel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Utility/Carousel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Utility/Carousel.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Utility/CredentialInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Utility/CredentialInputView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Utility/EsriBorderViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Utility/EsriBorderViewModifier.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Utility/InterfaceOrientationObserverView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Utility/InterfaceOrientationObserverView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Utility/KeyboardState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Utility/KeyboardState.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Utility/MarkdownView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Utility/MarkdownView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Utility/RepresentedUITextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Utility/RepresentedUITextView.swift -------------------------------------------------------------------------------- /Sources/ArcGISToolkit/Utility/SearchField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Sources/ArcGISToolkit/Utility/SearchField.swift -------------------------------------------------------------------------------- /Test Runner/Test Plans/UI Tests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Plans/UI Tests.xctestplan -------------------------------------------------------------------------------- /Test Runner/Test Plans/Unit Tests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Plans/Unit Tests.xctestplan -------------------------------------------------------------------------------- /Test Runner/Test Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Test Runner/Test Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Test Runner/Test Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Test Runner/Test Runner.xcodeproj/xcshareddata/xcschemes/Test Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner.xcodeproj/xcshareddata/xcschemes/Test Runner.xcscheme -------------------------------------------------------------------------------- /Test Runner/Test Runner/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Test Runner/Test Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Test Runner/Test Runner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Test Runner/Test Runner/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Test Runner/Test Runner/Test Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/Test Runner.entitlements -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestRunnerApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestRunnerApp.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestViews/AttachmentCameraControllerTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestViews/AttachmentCameraControllerTestView.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestViews/BasemapGalleryTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestViews/BasemapGalleryTestView.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestCase1View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestCase1View.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestCase2View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestCase2View.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestCase3View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestCase3View.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestCase4View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestCase4View.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestCase5View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestCase5View.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestCase6View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestCase6View.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestViews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestViews/BookmarksTestViews/BookmarksTestViews.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestViews/FeatureFormTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestViews/FeatureFormTestView.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestViews/FloorFilterTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestViews/FloorFilterTestView.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestViews/PopupTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestViews/PopupTestView.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/TestViews/RepresentedUITextViewTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/TestViews/RepresentedUITextViewTestView.swift -------------------------------------------------------------------------------- /Test Runner/Test Runner/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/Test Runner/Tests.swift -------------------------------------------------------------------------------- /Test Runner/TestRunner.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/TestRunner.xcconfig -------------------------------------------------------------------------------- /Test Runner/UI Tests/AttachmentCameraControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/UI Tests/AttachmentCameraControllerTests.swift -------------------------------------------------------------------------------- /Test Runner/UI Tests/BasemapGalleryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/UI Tests/BasemapGalleryTests.swift -------------------------------------------------------------------------------- /Test Runner/UI Tests/BookmarksTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/UI Tests/BookmarksTests.swift -------------------------------------------------------------------------------- /Test Runner/UI Tests/FeatureFormViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/UI Tests/FeatureFormViewTests.swift -------------------------------------------------------------------------------- /Test Runner/UI Tests/FloorFilterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/UI Tests/FloorFilterTests.swift -------------------------------------------------------------------------------- /Test Runner/UI Tests/PopupViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/UI Tests/PopupViewTests.swift -------------------------------------------------------------------------------- /Test Runner/UI Tests/RepresentedUITextViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Test Runner/UI Tests/RepresentedUITextViewTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/ARTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/ARTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/AngleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/AngleTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/AttachmentsFeatureElementDisplayTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/AttachmentsFeatureElementDisplayTypeTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/AuthenticationManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/AuthenticationManagerTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/AuthenticatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/AuthenticatorTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/BasemapGalleryItemTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/BasemapGalleryItemTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/BasemapGalleryViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/BasemapGalleryViewModelTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/BookmarksTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/BookmarksTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/CertificatePickerViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/CertificatePickerViewModelTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/CompassDirectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/CompassDirectionTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/CompassTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/CompassTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/FeatureAttachmentKindTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/FeatureAttachmentKindTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/FloorFilterViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/FloorFilterViewModelTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/JobManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/JobManagerTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/LocatorSearchSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/LocatorSearchSourceTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/LoginViewModifierTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/LoginViewModifierTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/NetworkChallengeContinuationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/NetworkChallengeContinuationTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/OnDemandMapModelStatusTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/OnDemandMapModelStatusTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/OnDemandMapModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/OnDemandMapModelTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/PreplannedMapModelStatusTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/PreplannedMapModelStatusTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/PreplannedMapModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/PreplannedMapModelTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/Publisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/Publisher.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/ResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/ResultTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/ScalebarTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/ScalebarTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/SearchViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/SearchViewModelTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/SmartLocatorSearchSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/SmartLocatorSearchSourceTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/Test Support/Data/Network Mocking/BookmarksTests/testBookmarksWithGeoModel.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/Test Support/Data/Network Mocking/BookmarksTests/testBookmarksWithGeoModel.sqlite -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/Test Support/Extensions/Task.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/Test Support/Extensions/Task.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/Test Support/Extensions/XCTest/XCTestCase+ArcGISURLSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/Test Support/Extensions/XCTest/XCTestCase+ArcGISURLSession.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/Test Support/Utility/NetworkChallengeHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/Test Support/Utility/NetworkChallengeHandler.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/TokenChallengeContinuationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/TokenChallengeContinuationTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/TrustHostViewModifierTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/TrustHostViewModifierTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/UtilityNetworkTraceViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/UtilityNetworkTraceViewModelTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/ValueContinuationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/ValueContinuationTests.swift -------------------------------------------------------------------------------- /Tests/ArcGISToolkitTests/ViewpointTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/Tests/ArcGISToolkitTests/ViewpointTests.swift -------------------------------------------------------------------------------- /t9nmanifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-swift-toolkit/HEAD/t9nmanifest.txt --------------------------------------------------------------------------------