You are here

function location_bounds_ca in Location 7.4

Same name and namespace in other branches
  1. 5.3 supported/location.ca.inc \location_bounds_ca()
  2. 6.3 supported/location.ca.inc \location_bounds_ca()
  3. 7.5 supported/location.ca.inc \location_bounds_ca()
  4. 7.3 supported/location.ca.inc \location_bounds_ca()

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

File

supported/location.ca.inc, line 393

Code

function location_bounds_ca() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => -141.00554,
    'minlat' => 41.6690855,
    'maxlng' => -52.61593,
    'maxlat' => 83.1161164,
  );
}