You are here

function location_bounds_mx in Location 7.3

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

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

File

supported/location.mx.inc, line 51
Mexico.

Code

function location_bounds_mx() {
  return array(
    'minlng' => -118.34045,
    'minlat' => 14.519233,
    'maxlng' => -86.63915,
    'maxlat' => 32.755267,
  );
}