摘要:
小程序项目中有时候需要根据“手机信息”和“分享胶囊按钮”的信息,来设置页面元素; 比如,自定义导航栏,要根据手机的状态栏和胶囊按钮height、top来设置自定义导航栏; 获取方法如下: 在app.vue中获取存入store中 <script> export default { methods: { 阅读全文
摘要:
方法一:通过controls实现 使用controls在地图上显示一个btn图标,点击时调用接口回到当前位置: <template> <view> <map id="around-food-map" style="width: 100vw; height: 100vh;" :latitude="la 阅读全文
摘要:
uni-app使用map组件定位到当前位置并进行标注 manifest.json添加如下内容: 需要定位的页面 <template> <view> <map style="width: 100vw; height: 100vh;" :latitude="latitude" :longitude="l 阅读全文