getBoundingBox method

BoundingBox getBoundingBox()

Implementation

BoundingBox getBoundingBox() {
  if (_boundary != null) return _boundary!;
  MercatorProjection projection = MercatorProjection.fromZoomlevel(zoomLevel);
  _boundary = projection.boundingBoxOfTile(this);
  return _boundary!;
}