newWithUrlPattern static method

MFTileOverlay newWithUrlPattern(
  1. MFTileOverlayId tileOverlayId,
  2. String urlPattern, {
  3. double transparency = 0.0,
  4. int zIndex = 0,
  5. bool visible = true,
})

Implementation

static MFTileOverlay newWithUrlPattern(
    MFTileOverlayId tileOverlayId, String urlPattern,
    {double transparency = 0.0, int zIndex = 0, bool visible = true}) {
  return MFTileOverlay._(
      tileOverlayId: tileOverlayId,
      urlPattern: urlPattern,
      transparency: transparency,
      zIndex: zIndex,
      visible: visible);
}