location.vc.inc 510 B

123456789101112131415161718192021222324
  1. <?php
  2. // Saint Vincent and the Grenadines
  3. function location_province_list_vc() {
  4. return array('C' => "Charlotte",
  5. 'R' => "Grenadines",
  6. 'A' => "Saint Andrew",
  7. 'D' => "Saint David",
  8. 'G' => "Saint George",
  9. 'P' => "Saint Patrick");
  10. }
  11. /**
  12. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  13. */
  14. function location_bounds_vc() {
  15. return array(
  16. 'minlng' => -61.62325,
  17. 'minlat' => 12.2329,
  18. 'maxlng' => -61.1719,
  19. 'maxlat' => 13.362333,
  20. );
  21. }