location.gl.inc 392 B

123456789101112131415161718192021
  1. <?php
  2. // Greenland
  3. function location_province_list_gl() {
  4. return array('A' => "Avannaa",
  5. 'T' => "Tunu",
  6. 'K' => "Kitaa");
  7. }
  8. /**
  9. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  10. */
  11. function location_bounds_gl() {
  12. return array(
  13. 'minlng' => -73.39145,
  14. 'minlat' => 59.7644,
  15. 'maxlng' => -11.72105,
  16. 'maxlat' => 83.674733,
  17. );
  18. }