location.fm.inc 517 B

1234567891011121314151617181920212223242526
  1. <?php
  2. // Micronesia, Federated States of
  3. function location_province_list_fm() {
  4. return array(
  5. 'C' => "Chuuk",
  6. 'K' => "Kosrae",
  7. 'P' => "Pohnpei",
  8. 'Y' => "Yap",
  9. );
  10. }
  11. /**
  12. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  13. */
  14. function location_bounds_fm() {
  15. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  16. // EPSG:900913
  17. return array(
  18. 'minlng' => 138.064058,
  19. 'minlat' => 5.26970530,
  20. 'maxlng' => 163.046770,
  21. 'maxlat' => 9.58869232,
  22. );
  23. }