location.pf.inc 505 B

1234567891011121314151617181920212223
  1. <?php
  2. // French Polynesia
  3. function location_province_list_pf() {
  4. return array('M' => "Archipel des Marquises",
  5. 'T' => "Archipel des Tuamotu",
  6. 'I' => "Archipel des Tubuai",
  7. 'V' => "Iles du Vent",
  8. 'S' => "Iles Sous-le-Vent");
  9. }
  10. /**
  11. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  12. */
  13. function location_bounds_pf() {
  14. return array(
  15. 'minlng' => -150.8061,
  16. 'minlat' => -18.0048,
  17. 'maxlng' => -148.0971,
  18. 'maxlat' => -17.036567,
  19. );
  20. }