location.gf.inc 340 B

12345678910111213141516171819
  1. <?php
  2. // French Guiana
  3. function location_province_list_gf() {
  4. return array();
  5. }
  6. /**
  7. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  8. */
  9. function location_bounds_gf() {
  10. return array(
  11. 'minlng' => -54.54515,
  12. 'minlat' => 1.999333,
  13. 'maxlng' => -51.7183,
  14. 'maxlat' => 5.779333,
  15. );
  16. }