I'm trying to use OpenLayers in a TWebBrowser in Delphi.
When I open a simple example from their site using OpenLayers v4.3.1, I don't seem to be able to pan the map.
WebBrowser1.Navigate( 'http://openlayers.org/en/latest/examples/simple.html' );
I've set the embedded webbrowser mode by using code found in another post. setEmbeddedWebbrowserMode( iemIE10 );
OpenLayers v3.4 seems to work, however. I'm able to use the following fine: WebBrowser1.Navigate( 'http://www.acuriousanimal.com/thebookofopenlayers3/chapter01_01_basic_map.html' );
I'd like to be able to use the most recent API if possible. Any idea why the new one isn't working in TWebBrowser?