You are here

function location_bounds_bv in Location 7.4

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

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

File

supported/location.bv.inc, line 12

Code

function location_bounds_bv() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // Bounds manually eyeballed by bdragon in EPSG:4326 using the coordinate
  // readout in udig, because the poly is grouped with Norway.
  return array(
    'minlng' => 3.31,
    'minlat' => -54.4823,
    'maxlng' => 3.5201,
    'maxlat' => -54.3444,
  );
}