LngLatBounds constructor

LngLatBounds(
  1. LngLat sw,
  2. LngLat ne
)

Implementation

factory LngLatBounds(
  LngLat sw,
  LngLat ne,
) =>
    LngLatBounds.fromJsObject(LngLatBoundsJsImpl(
      sw.jsObject,
      ne.jsObject,
    ));