fourbasemap.vue 561 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view>
  3. <view class="maps">
  4. <map class="map_item" :latitude="latitude" :longitude="longitude" scale="14" :markers="markers" :show-location="true"
  5. @markertap="markertap">
  6. </map>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. title: 'map',
  15. latitude: 39.909,
  16. longitude: 116.39742,
  17. markers: []
  18. }
  19. },
  20. methods: {
  21. },
  22. onLoad() {
  23. },
  24. }
  25. </script>
  26. <style lang="scss">
  27. .maps {
  28. width: 100%;
  29. .map_item {
  30. width: 90%;
  31. margin: 0 auto;
  32. height: 1000rpx;
  33. }
  34. }
  35. </style>