From 6dbdcef91948f184f405f09733d12497bd2687fb Mon Sep 17 00:00:00 2001 From: ClemensF Date: Wed, 25 Mar 2020 16:14:20 +0100 Subject: [PATCH] Version 4.17.0: Added support for WMTS --- MapControl/Shared/MapBase.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MapControl/Shared/MapBase.cs b/MapControl/Shared/MapBase.cs index b37676b1..5e664769 100644 --- a/MapControl/Shared/MapBase.cs +++ b/MapControl/Shared/MapBase.cs @@ -49,7 +49,7 @@ namespace MapControl public static readonly DependencyProperty MaxZoomLevelProperty = DependencyProperty.Register( nameof(MaxZoomLevel), typeof(double), typeof(MapBase), - new PropertyMetadata(19d, (o, e) => ((MapBase)o).MaxZoomLevelPropertyChanged((double)e.NewValue))); + new PropertyMetadata(20d, (o, e) => ((MapBase)o).MaxZoomLevelPropertyChanged((double)e.NewValue))); public static readonly DependencyProperty AnimationDurationProperty = DependencyProperty.Register( nameof(AnimationDuration), typeof(TimeSpan), typeof(MapBase), @@ -146,8 +146,8 @@ namespace MapControl /// /// Gets or sets the maximum value of the ZoomLevel and TargetZommLevel properties. - /// Must be greater than or equal to MinZoomLevel and less than or equal to 20. - /// The default value is 19. + /// Must be greater than or equal to MinZoomLevel and less than or equal to 22. + /// The default value is 20. /// public double MaxZoomLevel {