Thanks a million, I am using this plugin in production. I have successfully

Thanks a million, I am using this plugin in production. I have successfully used it with OSM online and then also with a GeoServer offline. Now I have set up my own mapnik server on a linux VM. But I cannot connect to it from v-leaflet.
I can access my mapnik server using a browser with this url:
http://mapnik/ which loads an index.html that contains:

<script>
	...
	L.tileLayer('http://mapnik/osm_tiles/{z}/{x}/{y}.png',{maxZoom:18})
	...
</script>

I have tried this in my vaadin application:

LOpenStreetMapLayer layer = new LOpenStreetMapLayer();
layer.setUrl("http://mapnik/osm_tiles/{z}/{y}/{x}.png");
pk.setMaxZoom(18);

I only get the gray background

NB: ACTUALLY I JUST NOTICED THAT EVERYTHING WORKS FINE IN CHROME AND FIREFOX. This is only hapening in EDGE. In All browsers I get to view the map when I type the URL of my mapnik server, but only in EDGE it does not show in the v-leafet vaadin application. any idea Matti?

Actually it is purely a known EDGE issue due to the fact that “Edge doesn’t support VPN IP addresses so any workaround needs to employ some sort of proxy”.

I found this on a Stackoverflow issue. When I run Fidler on my PC it works well in EDGE. [Here’s]
(https://stackoverflow.com/questions/32384571/why-does-microsoft-edge-open-some-local-websites-but-not-others-where-the-doma/42701618#42701618) the link to the stack overflow discussion.

I am not sure though how to fix this in production because my web application runs well on EDGE.