When I set HideInfoWindow
to true
in the MarkerClicked
event, the clicked pin is no more focused in the map center:
private void Pin_MarkerClicked(object sender, PinClickedEventArgs e) { e.HideInfoWindow = true; }
is there a way to keep this behavior when HideInfoWindow
is set to true
?