location.as.inc 460 B

1234567891011121314151617181920212223
  1. <?php
  2. // American Samoa
  3. function location_province_list_as() {
  4. return array('E' => "Eastern",
  5. 'M' => "Manu'a",
  6. 'R' => "Rose Island",
  7. 'S' => "Swains Island",
  8. 'W' => "Western");
  9. }
  10. /**
  11. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  12. */
  13. function location_bounds_as() {
  14. return array(
  15. 'minlng' => -170.9021,
  16. 'minlat' => -14.541433,
  17. 'maxlng' => -168.23395,
  18. 'maxlat' => -14.183633,
  19. );
  20. }