You are here

function location_bounds_pk in Location 7.3

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

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

File

supported/location.pk.inc, line 25
Pakistan.

Code

function location_bounds_pk() {
  return array(
    'minlng' => 60.9339,
    'minlat' => 23.683133,
    'maxlng' => 75.52705,
    'maxlat' => 36.9695,
  );
}