| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view>
- <view class="maps">
- <map class="map_item" :latitude="latitude" :longitude="longitude" scale="14" :markers="markers" :show-location="true"
- @markertap="markertap">
- </map>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: 'map',
- latitude: 39.909,
- longitude: 116.39742,
- markers: []
- }
- },
- methods: {
-
- },
- onLoad() {
-
- },
- }
- </script>
- <style lang="scss">
- .maps {
- width: 100%;
- .map_item {
- width: 90%;
- margin: 0 auto;
- height: 1000rpx;
- }
- }
- </style>
|