miniprogram-demo/packageAPI/pages/get-location/get-location.wxml

30 lines
989 B
Plaintext
Raw Normal View History

2020-12-08 20:13:12 +08:00
<import src="../../common/head.wxml" />
<import src="../../common/foot.wxml" />
2020-12-08 18:53:41 +08:00
<view class="container">
<template is="head" data="{{title: 'getLocation'}}"/>
<view class="page-body">
<view class="page-section">
<view class="page-body-info">
<text class="page-body-text-small">当前位置经纬度</text>
<block wx:if="{{hasLocation === false}}">
<text class="page-body-text">未获取</text>
</block>
<block wx:if="{{hasLocation === true}}">
<view class="page-body-text-location">
<text>E: {{location.longitude[0]}}°{{location.longitude[1]}}</text>
<text>N: {{location.latitude[0]}}°{{location.latitude[1]}}</text>
</view>
</block>
</view>
<view class="btn-area">
<button type="primary" bindtap="getLocation">获取位置</button>
<button bindtap="clear">清空</button>
</view>
</view>
</view>
<template is="foot" />
</view>