location.me.inc 415 B

12345678910111213141516171819202122
  1. <?php
  2. // Montenegro
  3. function location_province_list_me() {
  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_me() {
  11. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  12. // EPSG:900913
  13. return array(
  14. 'minlng' => 18.4335307,
  15. 'minlat' => 41.8520718,
  16. 'maxlng' => 20.3551705,
  17. 'maxlat' => 43.5478856,
  18. );
  19. }