location.ga.inc 560 B

123456789101112131415161718192021222324252627
  1. <?php
  2. // Gabon
  3. function location_province_list_ga() {
  4. return array('ES' => "Estuaire",
  5. 'HO' => "Haut-Ogooue",
  6. 'MO' => "Moyen-Ogooue",
  7. 'NG' => "Ngounie",
  8. 'NY' => "Nyanga",
  9. 'OI' => "Ogooue-Ivindo",
  10. 'OL' => "Ogooue-Lolo",
  11. 'OM' => "Ogooue-Maritime",
  12. 'WN' => "Woleu-Ntem");
  13. }
  14. /**
  15. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  16. */
  17. function location_bounds_ga() {
  18. return array(
  19. 'minlng' => 8.59375,
  20. 'minlat' => -3.9324,
  21. 'maxlng' => 14.72285,
  22. 'maxlat' => 2.299667,
  23. );
  24. }