We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c4d77d5 + b66ed7f commit f13d0f8Copy full SHA for f13d0f8
src/AzureMapsControl.Components/Map/UserInteractionOptions.cs
@@ -1,6 +1,7 @@
1
namespace AzureMapsControl.Components.Map
2
{
3
using System.Diagnostics.CodeAnalysis;
4
+ using System.Text.Json.Serialization;
5
6
[ExcludeFromCodeCoverage]
7
public sealed class UserInteractionOptions
@@ -13,6 +14,7 @@ public sealed class UserInteractionOptions
13
14
/// <summary>
15
/// Whether double left click will zoom the map inwards.
16
/// </summary>
17
+ [JsonPropertyName("dblClickZoomInteraction")]
18
public bool? DblclickZoomInteraction { get; set; }
19
20
0 commit comments