mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
Update TileSource.cs
This commit is contained in:
parent
947488a567
commit
6bbb5fa5a4
|
|
@ -32,9 +32,9 @@ namespace MapControl
|
|||
get { return uriFormat; }
|
||||
set
|
||||
{
|
||||
uriFormat = value;
|
||||
uriFormat = value?.Replace("{c}", "{s}"); // for backwards compatibility since 5.4.0
|
||||
|
||||
if (Subdomains == null && uriFormat.Contains("{s}"))
|
||||
if (Subdomains == null && uriFormat != null && uriFormat.Contains("{s}"))
|
||||
{
|
||||
Subdomains = new string[] { "a", "b", "c" }; // default OpenStreetMap subdomains
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue