UNPKG

hera-cli

Version:
26 lines (24 loc) 489 B
var util = require('../../../../util/util.js') var formatLocation = util.formatLocation Page({ data: { hasLocation: false }, getLocation: function () { var that = this wx.getLocation({ success: function (res) { console.log(res) that.setData({ hasLocation: true, location: formatLocation(res.longitude, res.latitude) }) } }) }, clear: function () { this.setData({ hasLocation: false }) } })