location.bn.inc 518 B

123456789101112131415161718192021222324
  1. <?php
  2. // Brunei Darussalam
  3. function location_province_list_bn() {
  4. return array('BEL' => "Belait",
  5. 'BRM' => "Brunei and Muara",
  6. 'TEM' => "Temburong",
  7. 'TUT' => "Tutong");
  8. }
  9. /**
  10. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  11. */
  12. function location_bounds_bn() {
  13. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  14. // EPSG:900913
  15. return array(
  16. 'minlng' => 113.999170,
  17. 'minlat' => 4.01668101,
  18. 'maxlng' => 115.360741,
  19. 'maxlat' => 5.05705678,
  20. );
  21. }