location.gw.inc 594 B

123456789101112131415161718192021222324252627
  1. <?php
  2. // Guinea-Bissau
  3. function location_province_list_gw() {
  4. return array('BF' => "Bafata Region",
  5. 'BB' => "Biombo Region",
  6. 'BS' => "Bissau Region",
  7. 'BL' => "Bolama Region",
  8. 'CA' => "Cacheu Region",
  9. 'GA' => "Gabu Region",
  10. 'OI' => "Oio Region",
  11. 'QU' => "Quinara Region",
  12. 'TO' => "Tombali Region");
  13. }
  14. /**
  15. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  16. */
  17. function location_bounds_gw() {
  18. return array(
  19. 'minlng' => -16.92935,
  20. 'minlat' => 10.839167,
  21. 'maxlng' => -13.6464,
  22. 'maxlat' => 12.672033,
  23. );
  24. }