You are here

function location_bounds_by in Location 7.4

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

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

File

supported/location.by.inc, line 17

Code

function location_bounds_by() {
  return array(
    'minlng' => 23.1605,
    'minlat' => 51.331367,
    'maxlng' => 32.6273,
    'maxlat' => 56.223167,
  );
}