-1

I would like to know how zooming the map with mouse wheel on a GMMap into a TWebBrowser D10.

Thanks for help.

Ken White
  • 123,280
  • 14
  • 225
  • 444

1 Answers1

0

You needs to add ScrollWheel to the GMMap.NonVisualProp.Options set

GMMap.NonVisualProp.Options := GMMap.NonVisualProp.Options + [ScrollWheel];

or exclude it

GMMap.NonVisualProp.Options := GMMap.NonVisualProp.Options - [ScrollWheel];

By default, this set includes this option

cadetill
  • 1,552
  • 16
  • 24