location.sc.inc 968 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. // Seychelles
  3. function location_province_list_sc() {
  4. return array('AP' => "Anse aux Pins",
  5. 'AB' => "Anse Boileau",
  6. 'AE' => "Anse Etoile",
  7. 'AL' => "Anse Louis",
  8. 'AR' => "Anse Royale",
  9. 'BL' => "Baie Lazare",
  10. 'BS' => "Baie Sainte Anne",
  11. 'BV' => "Beau Vallon",
  12. 'BA' => "Bel Air",
  13. 'BO' => "Bel Ombre",
  14. 'CA' => "Cascade",
  15. 'GL' => "Glacis",
  16. 'GM' => "Grand' Anse (on Mahe)",
  17. 'GP' => "Grand' Anse (on Praslin)",
  18. 'DG' => "La Digue",
  19. 'RA' => "La Riviere Anglaise",
  20. 'MB' => "Mont Buxton",
  21. 'MF' => "Mont Fleuri",
  22. 'PL' => "Plaisance",
  23. 'PR' => "Pointe La Rue",
  24. 'PG' => "Port Glaud",
  25. 'SL' => "Saint Louis",
  26. 'TA' => "Takamaka");
  27. }
  28. /**
  29. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  30. */
  31. function location_bounds_sc() {
  32. return array(
  33. 'minlng' => 46.04125,
  34. 'minlat' => -11.5018,
  35. 'maxlng' => 56.26545,
  36. 'maxlat' => -4.231767,
  37. );
  38. }