location.gm.inc 648 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. // Gambia
  3. function location_province_list_gm() {
  4. return array('BJ' => "Banjul",
  5. 'BS' => "Basse",
  6. 'BR' => "Brikama",
  7. 'JA' => "Janjangbure",
  8. 'KA' => "Kanifeng",
  9. 'KE' => "Kerewan",
  10. 'KU' => "Kuntaur",
  11. 'MA' => "Mansakonko",
  12. 'LR' => "Lower River",
  13. 'CR' => "Central River",
  14. 'NB' => "North Bank",
  15. 'UR' => "Upper River",
  16. 'WE' => "Western");
  17. }
  18. /**
  19. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  20. */
  21. function location_bounds_gm() {
  22. return array(
  23. 'minlng' => -16.79745,
  24. 'minlat' => 13.105767,
  25. 'maxlng' => -13.8271,
  26. 'maxlat' => 13.7983,
  27. );
  28. }