France.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <LayoutContainer>
  3. <div id="map" />
  4. <div class="advice">
  5. {{ $t("click_on_land_to_go_there") }}
  6. </div>
  7. <v-row class="map-shortcuts">
  8. <v-col cols="2">
  9. <nuxt-img src="/images/metropole.png" alt="Metropole" data="{map-fit: '51.03,-5.78;41.2,9.70'}" />
  10. </v-col>
  11. <v-col cols="2">
  12. <nuxt-img src="/images/guadeloupe.png" alt="Guadeloupe" data="{map-fit: '16.62,-62.03;15.74,-60.97'}" />
  13. </v-col>
  14. <v-col cols="2">
  15. <nuxt-img src="/images/martinique.png" alt="Martinique" data="{map-fit: '14.95,-61.43;14.28,-60.60'}" />
  16. </v-col>
  17. <v-col cols="2">
  18. <nuxt-img src="/images/mayotte.png" alt="Mayotte" data="{map-fit: '-12.51,44.86;-13.19,45.45'}" />
  19. </v-col>
  20. <v-col cols="2">
  21. <nuxt-img src="/images/la_reunion.png" alt="La Réunion" data="{map-fit: '-20.65,54.92;-21.65,56.15'}" />
  22. </v-col>
  23. <v-col cols="2">
  24. <nuxt-img src="/images/guyane.png" alt="Guyane" data="{map-fit: '6.24,-54.62;1.87,-50.59'}" />
  25. </v-col>
  26. </v-row>
  27. </LayoutContainer>
  28. </template>
  29. <style>
  30. .map-shortcuts img {
  31. border: solid 1px #000;
  32. width: 75px;
  33. height: 75px;
  34. }
  35. </style>