location.sr.inc 571 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // Suriname
  3. function location_province_list_sr() {
  4. return array('BR' => "Brokopondo",
  5. 'CM' => "Commewijne",
  6. 'CR' => "Coronie",
  7. 'MA' => "Marowijne",
  8. 'NI' => "Nickerie",
  9. 'PA' => "Para",
  10. 'PM' => "Paramaribo",
  11. 'SA' => "Saramacca",
  12. 'SI' => "Sipaliwini",
  13. 'WA' => "Wanica");
  14. }
  15. /**
  16. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  17. */
  18. function location_bounds_sr() {
  19. return array(
  20. 'minlng' => -58.09095,
  21. 'minlat' => 1.9214,
  22. 'maxlng' => -53.90215,
  23. 'maxlat' => 6.035667,
  24. );
  25. }