location.gr.inc 689 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. // Greece
  3. function location_province_list_gr() {
  4. return array('AT' => "Attica",
  5. 'CN' => "Central Greece",
  6. 'CM' => "Central Macedonia",
  7. 'CR' => "Crete",
  8. 'EM' => "East Macedonia and Thrace",
  9. 'EP' => "Epirus",
  10. 'II' => "Ionian Islands",
  11. 'NA' => "North Aegean",
  12. 'PP' => "Peloponnesos",
  13. 'SA' => "South Aegean",
  14. 'TH' => "Thessaly",
  15. 'WG' => "West Greece",
  16. 'WM' => "West Macedonia");
  17. }
  18. /**
  19. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  20. */
  21. function location_bounds_gr() {
  22. return array(
  23. 'minlng' => 19.65595,
  24. 'minlat' => 34.851,
  25. 'maxlng' => 28.16225,
  26. 'maxlat' => 41.885033,
  27. );
  28. }