location.il.inc 463 B

123456789101112131415161718192021222324
  1. <?php
  2. // Israel
  3. function location_province_list_il() {
  4. return array('C' => "Central",
  5. 'H' => "Haifa",
  6. 'J' => "Jerusalem",
  7. 'N' => "Northern",
  8. 'S' => "Southern",
  9. 'T' => "Tel Aviv");
  10. }
  11. /**
  12. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  13. */
  14. function location_bounds_il() {
  15. return array(
  16. 'minlng' => 34.177243,
  17. 'minlat' => 29.519233,
  18. 'maxlng' => 35.8844,
  19. 'maxlat' => 33.314233,
  20. );
  21. }