Skip to content

Commit 3a301ce

Browse files
committed
Add unit tests on geometries
1 parent 9784353 commit 3a301ce

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

samples/AzureMapsControl.Sample/Pages/Markers/HtmlMarkersRemove.razor

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,13 @@
44
<AzureMap Id="map"
55
EventActivationFlags="MapEventActivationFlags
66
.None()
7-
.Enable(MapEventType.Wheel)"
8-
OnWheel="OnMapWheel" />
7+
.Enable(MapEventType.Click)"
8+
OnClick="OnMapClick" />
99

1010
@code {
1111

1212
private AzureMapsControl.Components.Markers.HtmlMarker _marker;
1313

14-
public async Task OnMapWheel(MapEventArgs eventArgs)
15-
{
16-
var options = await eventArgs.Map.GetCameraOptionsAsync();
17-
}
18-
1914
public async Task OnMapClick(MapMouseEventArgs args)
2015
{
2116
if (_marker != null)

0 commit comments

Comments
 (0)