location.pm.inc 396 B

1234567891011121314151617181920
  1. <?php
  2. // Saint Pierre and Miquelon
  3. function location_province_list_pm() {
  4. return array('P' => "Saint Pierre",
  5. 'M' => "Miquelon");
  6. }
  7. /**
  8. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  9. */
  10. function location_bounds_pm() {
  11. return array(
  12. 'minlng' => -56.41835,
  13. 'minlat' => 46.7927,
  14. 'maxlng' => -56.1141,
  15. 'maxlat' => 47.203467,
  16. );
  17. }