I have my map declared in xaml like this:
<my:Map Height="497" CredentialsProvider="key" HorizontalAlignment="Left" Margin="6,104,0,0" Name="map1" VerticalAlignment="Top" Width="450" ZoomBarVisibility="Visible" />
And I can’t figure out why on double tap map is zoomed in? How can I disable this behavior?
Thanks in advance, best regards
This is the default behavior of the map control. I can only think of two ways to disable this functionality:
MapControland override the map’sOnDoubleTaporOnZoomLevelChangedmethodsMapZoomorDoubleTapevent handlers and utilizee.Handled = truein cases that you don’t want other handlers to do anything.Hopefully this helps a little.