location.fj.inc 463 B

1234567891011121314151617181920212223
  1. <?php
  2. // Fiji
  3. function location_province_list_fj() {
  4. return array('C' => "Central Division",
  5. 'N' => "Northern Division",
  6. 'E' => "Eastern Division",
  7. 'W' => "Western Division",
  8. 'R' => "Rotuma");
  9. }
  10. /**
  11. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  12. */
  13. function location_bounds_fj() {
  14. return array(
  15. 'minlng' => -180,
  16. 'minlat' => -21.808767,
  17. 'maxlng' => 180,
  18. 'maxlat' => -15.7846,
  19. );
  20. }