You are here

function location_bounds_fm in Location 7.3

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

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

File

supported/location.fm.inc, line 23
Micronesia, Federated States of.

Code

function location_bounds_fm() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 138.064058,
    'minlat' => 5.2697053,
    'maxlng' => 163.04677,
    'maxlat' => 9.58869232,
  );
}