| 123456789101112131415161718192021222324252627282930 |
- // pages/share/share.js
- Page({
- data: {
- shareImageUrl: '',
- markers: [{
- id: 999,
- latitude: '32.001233',
- longitude: '120.5475',
- iconPath: "https://6875-huihenduo-2gx127w7f837b584-1255802371.tcb.qcloud.la/%E8%B4%A7%E4%B8%BB%E5%B0%8F%E7%A8%8B%E5%BA%8F%E5%85%88%E8%A1%8C%E7%89%88/location.png",
- height: 30,
- width: 30
- }],
- logoUrl: 'https://6875-huihenduo-2gx127w7f837b584-1255802371.tcb.qcloud.la/miniapp-static/%E6%B1%87%E5%BE%88%E5%A4%9Alogo-%E5%B7%A6%E5%8F%B3.png'
- },
- onLoad: function (options) {
- let {
- latitude,
- longitude
- } = options
- this.data.markers[0].latitude = latitude
- this.data.markers[0].longitude = longitude
- this.setData({
- markers: this.data.markers,
- shareImageUrl: (options.shareImageUrl.replace(/qwerdfb000mmmccc/g, '?')).replace(/mmmcccqwerdfb/g, '=')
- })
- }
- })
|