12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- const util = require('../../../../util/util.js')
- const formatLocation = util.formatLocation
- Page({
- onShareAppMessage() {
- return {
- title: '使用原生地图选择位置',
- path: 'packageAPI/pages/location/choose-location/choose-location'
- }
- },
- data: {
- theme: 'light',
- hasLocation: false,
- },
- chooseLocation() {
- const that = this
- wx.chooseLocation({
- success(res) {
- console.log(res)
- that.setData({
- hasLocation: true,
- location: formatLocation(res.longitude, res.latitude),
- locationAddress: res.address
- })
- }
- })
- },
- clear() {
- this.setData({
- hasLocation: false
- })
- },
- onLoad() {
- this.setData({
- theme: wx.getSystemInfoSync().theme || 'light'
- })
- if (wx.onThemeChange) {
- wx.onThemeChange(({theme}) => {
- this.setData({theme})
- })
- }
- }
- })
|