location.mq.inc 335 B

12345678910111213141516171819
  1. <?php
  2. // Martinique
  3. function location_province_list_mq() {
  4. return array();
  5. }
  6. /**
  7. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  8. */
  9. function location_bounds_mq() {
  10. return array(
  11. 'minlng' => -61.241,
  12. 'minlat' => 14.391567,
  13. 'maxlng' => -60.7837,
  14. 'maxlat' => 14.8491,
  15. );
  16. }