uni-app map组件的marker
<pre><template><br> <view><br> <page-head :title="title"></page-head><br> <view class="uni-common-mt"><br> <view><br> <map :latitude="latitude" :longitude="longitude" :markers="covers"><br> </map><br> </view><br> </view><br> <image src="../../static/app-plus/location@3x.png"></image><br> </view><br></template><br><br><script><br> export default {<br> data() {<br> return {<br> title: 'map',<br> latitude: 39.909,<br> longitude: 116.39742,<br> covers: [{<br> latitude: 39.9085,<br> longitude: 116.39747,<br> // #ifdef APP-PLUS<br> iconPath: '../../static/app-plus/location@3x.png',<br> // #endif<br> // #ifndef APP-PLUS<br> iconPath: '../../static/location.png',<br> // #endif<br> }, {<br> latitude: 39.90,<br> longitude: 116.39,<br> // #ifdef APP-PLUS<br> iconPath: '../../static/app-plus/location@3x.png',<br> // #endif<br> // #ifndef APP-PLUS<br> iconPath: '../../static/location.png',<br> // #endif<br> }]<br> }<br> },<br> methods: {<br><br> }<br> }<br></script><br><br><br><style><br> map {<br> width: 100%;<br> height: 600rpx;<br> }<br></style></pre><br><br>来源:https://www.cnblogs.com/xushan03/p/15043248.html
頁:
[1]