location.mo.inc 588 B

123456789101112131415161718192021222324252627
  1. <?php
  2. // Macau
  3. function location_province_list_mo() {
  4. return array(
  5. 'OLF' => "Our Lady Fatima Parish",
  6. 'ANT' => "St. Anthony Parish",
  7. 'LAZ' => "St. Lazarus Parish",
  8. 'CAT' => "Cathedral Parish",
  9. 'LAW' => "St. Lawrence Parish",
  10. );
  11. }
  12. /**
  13. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  14. */
  15. function location_bounds_mo() {
  16. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  17. // EPSG:900913
  18. return array(
  19. 'minlng' => 113.521060,
  20. 'minlat' => 22.1053701,
  21. 'maxlng' => 113.587515,
  22. 'maxlat' => 22.2176630,
  23. );
  24. }