location.ms.inc 413 B

123456789101112131415161718192021
  1. <?php
  2. // Montserrat
  3. function location_province_list_ms() {
  4. return array('A' => "Saint Anthony",
  5. 'G' => "Saint Georges",
  6. 'P' => "Saint Peter");
  7. }
  8. /**
  9. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  10. */
  11. function location_bounds_ms() {
  12. return array(
  13. 'minlng' => -62.26695,
  14. 'minlat' => 16.659067,
  15. 'maxlng' => -62.20585,
  16. 'maxlat' => 16.738,
  17. );
  18. }