From 63eebb2ce6a42a28780ef7019cbcddf60ec18ef4 Mon Sep 17 00:00:00 2001 From: William Bohrmann Date: Mon, 4 Mar 2024 17:03:52 -0800 Subject: [PATCH 1/4] initial --- README.md | 2 +- docs/legend.md | 26 ++++++++++++++++-- docs/measure-toolbar.md | 17 ++++++++++-- docs/overview-map.md | 60 +++++++++-------------------------------- 4 files changed, 52 insertions(+), 53 deletions(-) diff --git a/README.md b/README.md index a955e6449..aec3b7463 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ The ArcGIS Maps SDK for .NET Toolkit contains controls and components to acceler |[FloorFilter](docs/floor-filter.md) | ![image](https://user-images.githubusercontent.com/29742178/158746908-71a39e28-596f-44b6-9230-e2a04bdaeb9e.png) | Browse floor-aware maps and scenes and filter the view to show levels in a facility. | WinUI, MAUI, UWP, WPF | |[GeoViewController](docs/geoviewcontroller.md) | | A helper class to enable easy adoption of MVVM patterns in an ArcGIS Maps SDK for .NET application. | WinUI, MAUI, UWP, WPF | | [Legend](docs/legend.md) | | Display a legend for a map or scene view. | WinUI, MAUI, UWP, WPF | -| [MeasureToolbar](docs/measure-toolbar.md) | ![MeasureToolbar](https://user-images.githubusercontent.com/1378165/73389958-0f6dde00-428a-11ea-8c78-7192d49ea605.png) | Measure distances, areas, and features in a map view. | UWP, WPF | +| [MeasureToolbar](docs/measure-toolbar.md) | ![MeasureToolbar](https://user-images.githubusercontent.com/1378165/73389958-0f6dde00-428a-11ea-8c78-7192d49ea605.png) | Measure distances, areas, and features in a map view. | WinUI, UWP, WPF | |[OverviewMap](docs/overview-map.md) | | Display an interactive inset map for a map or scene. | WinUI, MAUI, UWP, WPF | |[PopupViewer](docs/popup-viewer.md) | | Displays information from simple popups. | WinUI, MAUI, UWP, WPF | | [ScaleLine](docs/scale-line.md) | ![ScaleLine](https://user-images.githubusercontent.com/1378165/73390077-3debb900-428a-11ea-8b2f-dfd4914a637e.png) | Display the current scale reference for a map. | WinUI, MAUI, UWP, WPF | diff --git a/docs/legend.md b/docs/legend.md index e11c80a3e..ddd565d9b 100644 --- a/docs/legend.md +++ b/docs/legend.md @@ -13,6 +13,28 @@ Display a legend for a map or scene view. ## Usage +### .NET MAUI: + +```xml + + + + +``` + +### UWP/WinUI: + ```xml - -``` \ No newline at end of file + + + + + + + + +``` + +### WPF: + +The usage in WPF is identical to UWP/WinUI minus one important distinction. The `Legend` should be accessed with the same prefix as the `GeoView`. diff --git a/docs/measure-toolbar.md b/docs/measure-toolbar.md index 94c23a47c..1c212d6e2 100644 --- a/docs/measure-toolbar.md +++ b/docs/measure-toolbar.md @@ -13,6 +13,19 @@ Measure distances, areas, and features in a `MapView`. ## Usage +### UWP/WinUI: + ```xml - -``` \ No newline at end of file + + + + + + + + +``` + +### WPF: + +The usage in WPF is identical to UWP/WinUI minus one important distinction. The `MeasureToolbar` should be accessed with the same prefix as the `GeoView`. diff --git a/docs/overview-map.md b/docs/overview-map.md index 9fbd1fed9..815bdbc93 100644 --- a/docs/overview-map.md +++ b/docs/overview-map.md @@ -28,60 +28,24 @@ OverviewMap has the following bindable properties: ## Usage -UWP: +### .NET MAUI: ```xml - - - - - - + + + + ``` -WPF: +### WinUI/UWP: ```xml - - - - - - + + + + ``` -MAUI: +### WPF: -```xml - - - - - - - - - - - -``` \ No newline at end of file +The usage in WPF is identical to UWP/WinUI minus one important distinction. The `OverviewMap` should be accessed with the same prefix as the `GeoView`. From e5a9d636634aab5b941dfaa1d30868d734fc1d15 Mon Sep 17 00:00:00 2001 From: William Bohrmann Date: Mon, 22 Apr 2024 10:43:50 -0700 Subject: [PATCH 2/4] formatting, prefixes --- docs/legend.md | 24 +++++++++++++++++++----- docs/measure-toolbar.md | 19 ++++++++++++++++--- docs/overview-map.md | 19 ++++++++++++++----- 3 files changed, 49 insertions(+), 13 deletions(-) diff --git a/docs/legend.md b/docs/legend.md index ddd565d9b..c52880c07 100644 --- a/docs/legend.md +++ b/docs/legend.md @@ -16,25 +16,39 @@ Display a legend for a map or scene view. ### .NET MAUI: ```xml - + - + ``` ### UWP/WinUI: ```xml - + - + ``` ### WPF: -The usage in WPF is identical to UWP/WinUI minus one important distinction. The `Legend` should be accessed with the same prefix as the `GeoView`. +```xml + + + + + + + + +``` diff --git a/docs/measure-toolbar.md b/docs/measure-toolbar.md index 1c212d6e2..446e65fcc 100644 --- a/docs/measure-toolbar.md +++ b/docs/measure-toolbar.md @@ -16,16 +16,29 @@ Measure distances, areas, and features in a `MapView`. ### UWP/WinUI: ```xml - + - + ``` ### WPF: -The usage in WPF is identical to UWP/WinUI minus one important distinction. The `MeasureToolbar` should be accessed with the same prefix as the `GeoView`. +```xml + + + + + + + + +``` diff --git a/docs/overview-map.md b/docs/overview-map.md index 815bdbc93..3da5a4d6d 100644 --- a/docs/overview-map.md +++ b/docs/overview-map.md @@ -31,21 +31,30 @@ OverviewMap has the following bindable properties: ### .NET MAUI: ```xml - + - + ``` ### WinUI/UWP: ```xml - + - + ``` ### WPF: -The usage in WPF is identical to UWP/WinUI minus one important distinction. The `OverviewMap` should be accessed with the same prefix as the `GeoView`. +```xml + + + + +``` From 42cfabdc38c5079798fcf4ba26a5f545177040a5 Mon Sep 17 00:00:00 2001 From: William Bohrmann Date: Mon, 22 Apr 2024 11:59:09 -0700 Subject: [PATCH 3/4] use "MyMapView" --- docs/legend.md | 12 ++++++------ docs/measure-toolbar.md | 9 +++++---- docs/overview-map.md | 12 ++++++------ 3 files changed, 17 insertions(+), 16 deletions(-) diff --git a/docs/legend.md b/docs/legend.md index c52880c07..da8d5a5c9 100644 --- a/docs/legend.md +++ b/docs/legend.md @@ -18,8 +18,8 @@ Display a legend for a map or scene view. ```xml - - + ``` @@ -33,8 +33,8 @@ Display a legend for a map or scene view. - - + ``` @@ -47,8 +47,8 @@ Display a legend for a map or scene view. - - + ``` diff --git a/docs/measure-toolbar.md b/docs/measure-toolbar.md index 446e65fcc..1d3990e50 100644 --- a/docs/measure-toolbar.md +++ b/docs/measure-toolbar.md @@ -23,8 +23,9 @@ Measure distances, areas, and features in a `MapView`. - + MapView="{Binding ElementName=MyMapView}" /> + ``` @@ -37,8 +38,8 @@ Measure distances, areas, and features in a `MapView`. - + ``` diff --git a/docs/overview-map.md b/docs/overview-map.md index 3da5a4d6d..3cdca45a8 100644 --- a/docs/overview-map.md +++ b/docs/overview-map.md @@ -32,9 +32,9 @@ OverviewMap has the following bindable properties: ```xml - + + GeoView="{x:Reference MyMapView}" /> ``` @@ -43,9 +43,9 @@ OverviewMap has the following bindable properties: ```xml - + + GeoView="{Binding ElementName=MyMapView}" /> ``` @@ -53,8 +53,8 @@ OverviewMap has the following bindable properties: ```xml - + + GeoView="{Binding ElementName=MyMapView}" /> ``` From dcf397c5f06cd47bc5c0e571a23c7a7f318291bb Mon Sep 17 00:00:00 2001 From: William Bohrmann Date: Fri, 3 May 2024 16:34:40 -0700 Subject: [PATCH 4/4] fix binding --- docs/legend.md | 2 +- docs/measure-toolbar.md | 2 +- docs/overview-map.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/legend.md b/docs/legend.md index da8d5a5c9..4cd435171 100644 --- a/docs/legend.md +++ b/docs/legend.md @@ -19,7 +19,7 @@ Display a legend for a map or scene view. - ``` diff --git a/docs/measure-toolbar.md b/docs/measure-toolbar.md index 1d3990e50..0b61aa7b9 100644 --- a/docs/measure-toolbar.md +++ b/docs/measure-toolbar.md @@ -23,7 +23,7 @@ Measure distances, areas, and features in a `MapView`. + MapView="{x:Bind MyMapView}" /> diff --git a/docs/overview-map.md b/docs/overview-map.md index 3cdca45a8..98e150134 100644 --- a/docs/overview-map.md +++ b/docs/overview-map.md @@ -34,7 +34,7 @@ OverviewMap has the following bindable properties: + GeoView="{x:Bind MyMapView}" /> ```