You are here

function location_bounds_ax in Location 5.3

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

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

File

supported/location.ax.inc, line 12

Code

function location_bounds_ax() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 19.5137748,
    'minlat' => 59.9044583,
    'maxlng' => 21.0966239,
    'maxlat' => 60.4807538,
  );
}