You are here

function location_bounds_fk in Location 5.3

Same name and namespace in other branches
  1. 6.3 supported/location.fk.inc \location_bounds_fk()
  2. 7.5 supported/location.fk.inc \location_bounds_fk()
  3. 7.3 supported/location.fk.inc \location_bounds_fk()
  4. 7.4 supported/location.fk.inc \location_bounds_fk()

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

File

supported/location.fk.inc, line 12

Code

function location_bounds_fk() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => -61.317441,
    'minlat' => -52.341765,
    'maxlng' => -57.733603,
    'maxlat' => -51.027736,
  );
}