location.md.inc 682 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // Moldova, Republic of
  3. function location_province_list_md() {
  4. return array(
  5. 'GA' => "Gagauzia",
  6. 'CU' => "Chisinau",
  7. 'BA' => "Balti",
  8. 'CA' => "Cahul",
  9. 'ED' => "Edinet",
  10. 'LA' => "Lapusna",
  11. 'OR' => "Orhei",
  12. 'SO' => "Soroca",
  13. 'TI' => "Tighina",
  14. 'UN' => "Ungheni",
  15. 'SN' => "Stînga Nistrului",
  16. );
  17. }
  18. /**
  19. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  20. */
  21. function location_bounds_md() {
  22. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  23. // EPSG:900913
  24. return array(
  25. 'minlng' => 26.6178890,
  26. 'minlat' => 45.4617739,
  27. 'maxlng' => 30.1315763,
  28. 'maxlat' => 48.4860338,
  29. );
  30. }