1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <view>
- <view class="page-body">
- <view class="page-section page-section-gap">
- <map style="width: 100%; height: 100vh;" :latitude="latitude" :longitude="longitude" :markers="covers">
- </map>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- id:0, // 使用 marker点击事件 需要填写id
- title: 'map',
- latitude: 39.909,
- longitude: 116.39742,
- covers: [{
- latitude: 39.909,
- longitude: 116.39742,
- // iconPath: '../../../static/location.png'
- }, {
- latitude: 39.90,
- longitude: 116.39,
- // iconPath: '../../../static/location.png'
- }]
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- </style>
|