location.rs.inc 411 B

12345678910111213141516171819202122
  1. <?php
  2. // Serbia
  3. function location_province_list_rs() {
  4. return array(
  5. );
  6. }
  7. /**
  8. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  9. */
  10. function location_bounds_rs() {
  11. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  12. // EPSG:900913
  13. return array(
  14. 'minlng' => 18.8448339,
  15. 'minlat' => 42.2349530,
  16. 'maxlng' => 22.9844779,
  17. 'maxlat' => 46.1740665,
  18. );
  19. }