location.cy.inc 459 B

123456789101112131415161718192021222324
  1. <?php
  2. // Cyprus
  3. function location_province_list_cy() {
  4. return array('F' => "Famagusta",
  5. 'K' => "Kyrenia",
  6. 'A' => "Larnaca",
  7. 'I' => "Limassol",
  8. 'N' => "Nicosia",
  9. 'P' => "Paphos");
  10. }
  11. /**
  12. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  13. */
  14. function location_bounds_cy() {
  15. return array(
  16. 'minlng' => 32.196,
  17. 'minlat' => 34.596467,
  18. 'maxlng' => 34.5541,
  19. 'maxlat' => 35.748533,
  20. );
  21. }