(a, b)
| 1437 | // @factory L.latLngBounds(latlngs: LatLng[]) |
| 1438 | // Creates a `LatLngBounds` object defined by the geographical points it contains. Very useful for zooming the map to fit a particular set of locations with [`fitBounds`](#map-fitbounds). |
| 1439 | function toLatLngBounds(a, b) { |
| 1440 | if (a instanceof LatLngBounds) { |
| 1441 | return a; |
| 1442 | } |
| 1443 | return new LatLngBounds(a, b); |
| 1444 | } |
| 1445 | |
| 1446 | /* @class LatLng |
| 1447 | * @aka L.LatLng |
no outgoing calls
no test coverage detected