uuidTileKeyGenerator static method

String uuidTileKeyGenerator(
  1. String url
)

Default tileKeyGenerator which generates v5 UUIDs from input strings

May be utilised in custom tileKeyGenerator implementations.

See BuiltInMapCachingProvider.getOrCreateInstance's parameter for more info.

Implementation

static String uuidTileKeyGenerator(String url) =>
    _uuid.v5(Namespace.url.value, url);