location.st.inc 384 B

1234567891011121314151617181920
  1. <?php
  2. // Sao Tome and Principe
  3. function location_province_list_st() {
  4. return array('S' => "Sao Tome",
  5. 'P' => "Principe");
  6. }
  7. /**
  8. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  9. */
  10. function location_bounds_st() {
  11. return array(
  12. 'minlng' => 6.3808,
  13. 'minlat' => 0.075233,
  14. 'maxlng' => 7.44865,
  15. 'maxlat' => 1.704133,
  16. );
  17. }