You are here

function location_bounds_vi in Location 7.3

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

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

File

supported/location.vi.inc, line 22
Virgin Islands, U. S.

Code

function location_bounds_vi() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => -65.020315,
    'minlat' => 17.6825393,
    'maxlng' => -64.55866399999999,
    'maxlat' => 18.3888528,
  );
}