You are here

function location_bounds_mq in Location 7.3

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

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

File

supported/location.mq.inc, line 18
Martinique.

Code

function location_bounds_mq() {
  return array(
    'minlng' => -61.241,
    'minlat' => 14.391567,
    'maxlng' => -60.7837,
    'maxlat' => 14.8491,
  );
}