You are here

function location_bounds_tk in Location 7.3

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

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

File

supported/location.tk.inc, line 22
Tokelau.

Code

function location_bounds_tk() {

  // Note: I determined this bounding box manually using a visualization tool. --Bdragon
  return array(
    'minlng' => -172.68311,
    'minlat' => -9.50595,
    'maxlng' => -171.09833,
    'maxlat' => -8.439769999999999,
  );
}