toBounds method

GoogleMapsUtilsLatLngBounds toBounds(
  1. double x,
  2. double y,
  3. double radiusInMeters
)

Creates a bounding box centered at (x, y) with radiusInMeters.

Implementation

GoogleMapsUtilsLatLngBounds toBounds(
        double x, double y, double radiusInMeters) =>
    SphericalUtils.toBounds(x, y, radiusInMeters);