ssombat
Results
2
comments of
ssombat
Doing the same thing. Using this package to display custom tiles. To get rid of duplicated city labels, I set the MapType to None.
It works for me. ` private void setCustomOnlineTiles() { TileLayer tileLayer; tileLayer = TileLayer.FromTileUri((int x, int y, int zoom) => new Uri(_tileServerUrl.Replace("{zoom}", zoom.ToString()).Replace("{x}", x.ToString()).Replace("{y}", y.ToString()))); map.TileLayers.Add(tileLayer); map.MapType = MapType.None; }`