getTileFallbackUrl method
Generates a valid URL for the fallbackUrl
.
Implementation
String? getTileFallbackUrl(Coords coords, TileLayer options) {
final urlTemplate = options.fallbackUrl;
if (urlTemplate == null) return null;
return _getTileUrl(urlTemplate, coords, options);
}