| 12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view style="height: 100%;">
- <map style="width: 100%;height: 100%;" :latitude="latitude" :longitude="longitude" :markers="covers">
- </map>
- </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/logo.png'
- }, {
- latitude: 39.90,
- longitude: 116.39,
- iconPath: '/static/logo.png'
- }]
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- page {
- height: 100%;
- }
- </style>
|