Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 1.16 KB

scale-line.md

File metadata and controls

46 lines (34 loc) · 1.16 KB

ScaleLine

Display the current scale reference for a map.

ScaleLine

Features

  • Supports binding to a MapView.
  • Supports display of an arbitrary scale via the MapScale property.
  • Displays both metric and imperial units.

Usage

Ensure that your GeoModel is not null before selecting a basemap with the BasemapGallery.

.NET MAUI:

<Grid xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013">
    <esri:MapView x:Name="MyMapView" />
    <esri:ScaleLine Margin="20"
                    MapView="{x:Reference MyMapView}" />
</Grid>

UWP/WinUI:

<Grid xmlns:esri="using:Esri.ArcGISRuntime.UI.Controls"
      xmlns:toolkit="using:Esri.ArcGISRuntime.Toolkit.UI.Controls">
    <esri:MapView x:Name="MyMapView" />
    <toolkit:ScaleLine Margin="20"
                       MapView="{x:Bind MyMapView}" />
</Grid>

WPF:

<Grid xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013">
    <esri:MapView x:Name="MyMapView" />
    <esri:ScaleLine Margin="20"
                    MapView="{Binding ElementName=MyMapView}" />
</Grid>