Hi,
I am having a strange issue. I have two buttons on my application. One to zoom in and one to zoom out of the map. The zoom out button does what is supposed to do however the zoom in button does nothing and no errors are thrown. Thanks for any suggestions.
Private
Sub ZoomInToolStripButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ZoomInToolStripButton.Click
WinformsMap1.ZoomIn(20)
WinformsMap1.Refresh()
End Sub
Private Sub ZoomOutToolStripButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ZoomOutToolStripButton.Click
WinformsMap1.ZoomOut(20)
WinformsMap1.Refresh()
End Sub