changeZoomlevelCaptions method

Future<void> changeZoomlevelCaptions(
  1. int zoomlevel,
  2. PixelProjection projection
)
inherited

Implementation

Future<void> changeZoomlevelCaptions(int zoomlevel, PixelProjection projection) async {
  for (var caption in _captions) {
    await caption.changeZoomlevel(zoomlevel, projection);
  }
}