You are here

function location_bounds_us in Location 7.3

Same name and namespace in other branches
  1. 5.3 supported/location.us.inc \location_bounds_us()
  2. 6.3 supported/location.us.inc \location_bounds_us()
  3. 7.5 supported/location.us.inc \location_bounds_us()
  4. 7.4 supported/location.us.inc \location_bounds_us()

Returns minimum and maximum latitude and longitude needed to create a bounding box.

File

supported/location.us.inc, line 721
United States.

Code

function location_bounds_us() {
  return array(
    'minlng' => -179.22745,
    'minlat' => -56.5109,
    'maxlng' => 158.80735,
    'maxlat' => 71.399467,
  );
}