Set min & max scale

View inMAUIUWPWPFWinUIView on GitHub

Restrict zooming between specific scale ranges.

Image of min max scale

Use case

Data may only appear at a certain scale on a map, and may be visually lost if zooming too far in or out. Setting the minimum and maximum scales ensures the zoom extents are appropriately limited for the purposes of the map.

How to use the sample

Zoom in and out of the map. The zoom extents of the map are limited between the given minimum and maximum scales.

How it works

  1. Instantiate an Map object.
  2. Set min and max scales of map with the MinScale and MaxScale properties.
  3. Display the map in a map view.

Relevant API

  • Map
  • Basemap
  • MapView
  • ViewPoint

Tags

area of interest, level of detail, maximum, minimum, scale, viewpoint

Sample Code

SetMinMaxScale.xamlSetMinMaxScale.xamlSetMinMaxScale.xaml.cs
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
<UserControl
    x:Class="ArcGIS.UWP.Samples.SetMinMaxScale.SetMinMaxScale"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:esriUI="using:Esri.ArcGISRuntime.UI.Controls"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
        <esriUI:MapView x:Name="MyMapView"/>
    </Grid>
</UserControl>

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.