Hi Thinkgeo!
I do enjoy your product for Xamarin Forms, but I am struggling somewhat with finding the correct documentation that I need.
I am working with WmsOverlay from a custom WMS server, and I need help with two topics.
1 - Not all tides load on the map. Sometimes all on screen load, but not always. See photo below. I would like to debug why this happens, does anyone have an idea on how to do this? A tile that doesnt load when I run the app, might load when I move away from current extent, and back again to the same area
.
2 - I use WmsOverlay to access my server, but a requirement for my application is that offline caching is enabled. I have understood that the TileCache class is the way to go, as can be found in Google Maps overlay, and world map kit overlay. However, not in WmsOverlay. Can anyone tell me the best practice for this? Below is the code I have used for WmsOverlay.
wmsOverlay.ServerUris.Add(new System.Uri("http://openwms.statkart.no/skwms1/wms.topo2?"));
wmsOverlay.Parameters.Add("LAYERS", "topo2_WMS");
wmsOverlay.Parameters.Add("SRS", "EPSG:4326");//#
wmsOverlay.Parameters.Add("FORMAT", "image/jpeg"); //#
wmsOverlay.Parameters.Add("STYLES", "default");
wmsOverlay.Parameters.Add("VERSION", "1.3.0");
wmsOverlay.Parameters.Add("EXCEPTIONS", "XML");
wmsOverlay.Name = "WMS";