1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <view>
- <map style="width: 100%; height: 100vh;" :latitude="latitude" :longitude="longitude" :markers="covers"></map>
- <!-- <u-empty src="/static/img/empty.png" icon-size="335" text="正在建设中" color="#878787" mode="search"></u-empty> -->
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
- latitude: 26.605849,
- longitude: 106.728733,
- covers: [{
- latitude: 26.604745,
- longitude: 106.724332,
- iconPath: 'https://www.baidu.com/img/flexible/logo/pc/result.png'
- }, {
- latitude: 39.90,
- longitude: 116.39,
- // iconPath: '../../../static/location.png'
- }]
-
- }
- },
- onLoad(){
-
- },
- methods:{
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .wrap{margin-top: 20vh;}
- @import url("./parkingLists.scss");
- </style>
|