location.mc.inc 435 B

12345678910111213141516171819202122
  1. <?php
  2. // Monaco
  3. function location_province_list_mc() {
  4. return array('FV' => "Fontvieille",
  5. 'LC' => "La Condamine",
  6. 'MV' => "Monaco-Ville",
  7. 'MC' => "Monte-Carlo");
  8. }
  9. /**
  10. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  11. */
  12. function location_bounds_mc() {
  13. return array(
  14. 'minlng' => 7.267656,
  15. 'minlat' => 43.6426,
  16. 'maxlng' => 7.53715,
  17. 'maxlat' => 43.927506,
  18. );
  19. }