gmap dragging using left mouse button
Based on the accepted answer, I had to change MouseButton
to MouseButtons
for it to work:
MainGMap.DragButton = MouseButtons.Left;
I have found the answer, it is just setting the DragButton
property of GMAP
control
MainGMap.DragButton = MouseButton.Left;