open-location.js 333 B

1234567891011121314151617
  1. Page({
  2. data: {
  3. longitude: '120.126293',
  4. latitude: '30.274653',
  5. name: '黄龙万科中心',
  6. address: '学院路77号',
  7. },
  8. openLocation() {
  9. my.openLocation({
  10. longitude: this.data.longitude,
  11. latitude: this.data.latitude,
  12. name: this.data.name,
  13. address: this.data.address,
  14. })
  15. }
  16. })