location.tg.inc 429 B

1234567891011121314151617181920212223
  1. <?php
  2. // Togo
  3. function location_province_list_tg() {
  4. return array('K' => "Kara",
  5. 'P' => "Plateaux",
  6. 'S' => "Savanes",
  7. 'C' => "Centrale",
  8. 'M' => "Maritime");
  9. }
  10. /**
  11. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  12. */
  13. function location_bounds_tg() {
  14. return array(
  15. 'minlng' => -0.0933,
  16. 'minlat' => 6.086033,
  17. 'maxlng' => 1.7728,
  18. 'maxlat' => 11.124,
  19. );
  20. }