You are here

function location_bounds_vg in Location 7.3

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

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

File

supported/location.vg.inc, line 18
Virgin Islands, British.

Code

function location_bounds_vg() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => -64.774,
    'minlat' => 18.3346959,
    'maxlng' => -64.269999,
    'maxlat' => 18.7460403,
  );
}