location.pk.inc 529 B

123456789101112131415161718192021222324
  1. <?php
  2. // Pakistan
  3. function location_province_list_pk() {
  4. return array('B' => "Balochistan",
  5. 'T' => "Federally Administered Tribal Areas",
  6. 'I' => "Islamabad Capital Territory",
  7. 'N' => "North-West Frontier Province",
  8. 'P' => "Punjab",
  9. 'S' => "Sindh");
  10. }
  11. /**
  12. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  13. */
  14. function location_bounds_pk() {
  15. return array(
  16. 'minlng' => 60.9339,
  17. 'minlat' => 23.683133,
  18. 'maxlng' => 75.52705,
  19. 'maxlat' => 36.9695,
  20. );
  21. }