前言
我已經(jīng)把全部代碼放在github上-weChatApp-Run俏扩,可以下載來看看或者先star收藏腋粥,我以后還會進行一些優(yōu)化更新』瓯幔現(xiàn)在只是一個學習Demo甫窟,大家溝通學習跟继,實際應用還需更多優(yōu)化种冬。
正文
一、準備工作
1还栓、注冊一個小程序賬號碌廓,得用一個沒注冊過公眾號的郵箱注冊。
2剩盒、注冊過程中需要很多認證谷婆,有很多認證,比較繁瑣辽聊,如果暫時只是開發(fā)測試纪挎,不進行提審、發(fā)布的話跟匆,只要完成營業(yè)執(zhí)照號填寫就可以了异袄,不需要完成微信認證。
3玛臂、注冊完賬號烤蜕,登錄封孙,在主頁面左邊列表中點擊設置,然后再設置頁面中選開發(fā)設置就可以看到AppID
讽营,用于登錄開發(fā)工具虎忌。
二、開發(fā)工具
可以到官網(wǎng)下載開發(fā)工具下載
三橱鹏、開始項目
打開開發(fā)者工具膜蠢,選擇小程序選項,到達添加項目頁面
這個時候在前面設置頁面的
AppId
就用到了莉兰。
如果項目目錄中的文件是個空文件夾挑围,會提示是否創(chuàng)建quick start 項目。
選擇“是”糖荒,開發(fā)者工具會幫助我們在開發(fā)目錄里生成一個簡單的 demo杉辙。
這個Demo擁有一個完整的小程序的大概框架。
1捶朵、框架
先看下一目錄:
app.js: 小程序邏輯奏瞬,生命周期,泉孩,全局變量
app.json: 小程序公共設置硼端,導航欄顏色等,不可以注釋
app.wxss :小程序公共樣式寓搬,類CSS 珍昨。
小程序頁面構成:
每一個小程序頁面是由同路徑下同名的四個不同后綴文件的組成,如:index.js句喷、index.wxml镣典、index.wxss、index.json唾琼。
微信小程序中的每一個頁面的【路徑+頁面名】都需要寫在 app.json 的 pages 中兄春,且 pages 中的第一個頁面是小程序的首頁。
這四個文件按照功能可以分成三個部分:
配置:json 文件
邏輯層:js文件
視圖層:wxss.wxml文件
在 iOS 上锡溯,小程序的 javascript 代碼是運行在 JavaScriptCore 中
在 Android 上赶舆,小程序的 javascript 代碼是通過 X5 內(nèi)核來解析
在 開發(fā)工具上, 小程序的 javascript 代碼是運行在 nwjs(chrome內(nèi)核) 中祭饭。所以開發(fā)工具上的效果跟實際效果有所出入芜茵。
2、組件
微信提供了許多組件倡蝙,主要分為八種:
視圖容器九串、
基礎內(nèi)容、
表單組件、
操作反饋猪钮、
導航品山、
媒體組件、
地圖烤低、
畫布
包含view谆奥、scroll-view、button拂玻、form等普通常用的組件,也提供了地圖map
宰译、畫布canvas
檐蚜。
組件主要屬于視圖層,通過wxml來進行結構布局沿侈,類似于html闯第。通過wxss修改樣式,類似于css缀拭。
組件使用語法實例:
<!--普通視圖-->
<view>這是一個普通視圖</view>
<!--wxss樣式修改-->
<view clas="mainView">樣式修改過的視圖</view>
更多的組件以及相關使用方法可以到官方文檔-組件查看
3咳短、API
網(wǎng)絡
媒體
數(shù)據(jù)
位置
設備
界面
開發(fā)接口
其中網(wǎng)絡請求
的使用必須先到公眾平臺登錄小程序賬號,在設置頁面那里蛛淋,設置允許訪問的域名咙好,網(wǎng)絡請求包含了普通的http請求、支持上傳褐荷、下載勾效、socket∨迅Γ基本上滿足了我們開發(fā)中所需要的網(wǎng)絡需求层宫。
這些API屬于邏輯層,寫在js文件中其监,
使用實例:
wx.getLocation({
type: 'wgs84',
success: function(res) {
var latitude = res.latitude
var longitude = res.longitude
var speed = res.speed
var accuracy = res.accuracy
}})
可以到官方文檔-API查看其它API的使用方法萌腿。
4、編譯運行
1抖苦、模擬器
可以在模擬器上看效果毁菱,上面講到了運行底層不同,效果跟在手機上運行有些差異
2锌历、真機
在左邊的選項欄中鼎俘,選擇項目,然后點預覽會生產(chǎn)一個二維碼辩涝,用管理員微信號掃一掃就可以在真機上看實際效果
實踐--跑步小程序贸伐。
真機運行截圖(運行于iPhone7,微信版本:6.3.30):
功能:
能夠計算里程怔揩、時間捉邢、實時獲取跑步路徑(有些粗糙)
思路:
主要使用了微信小程序的獲取位置APIwx.getLocation()
和地圖組件map
脯丝。
首先實現(xiàn)一個計時器進行 計時,通過wx.getLocation()
獲取坐標伏伐,把獲取到的坐標存在一個數(shù)組中宠进,通過坐標每隔一段時間獲取里程,進行累加得到總里程藐翎,同時也通過坐標點進行連線
存在的問題:
1材蹬、因為目前找不到在地圖上畫連線的方法,所以采用了在地圖上貼小紅點圖的方法顯示大概跑步路徑吝镣,路徑比較粗糙堤器。
2、雖然采用了API里面的火星坐標gcj02類型末贾,但是獲取的坐標跟國際坐標差不多闸溃,依然存在著偏差。
核心代碼:
我把全部代碼放在github上-weChatApp-Run拱撵,可以下載來看看或者先star收藏辉川,我以后還會進行一些優(yōu)化更新。現(xiàn)在只是一個學習Demo拴测,大家溝通學習乓旗,實際應用還需更多優(yōu)化。
wxml文件布局代碼:
<view class="head" style="flex-direction:row;">
<image class="icon" src="/resources/joyrun.png" mode="aspectFill"/>
<button bindtap="openLocation">打開位置</button>
<button bindtap="starRun">開始跑步</button>
<button bindtap="stopRun">暫停跑步</button>
<text>\\n里程數(shù):{{meters}}km</text>
<text>\\n\\n時間:{{time}}</text>
</view>
<view class="mainView">
<map
class="mapView"
style="width: 100%; height: 375px;"
latitude="{{latitude}}"
longitude="{{longitude}}"
markers="{{markers}}"
covers="{{covers}}"
>
</map>
</view>
js文件邏輯代碼:
var countTooGetLocation = 0;
var total_micro_second = 0;
var starRun = 0;
var totalSecond = 0;
var oriMeters = 0.0;
/* 毫秒級倒計時 */
function count_down(that) {
if (starRun == 0) {
return;
}
if (countTooGetLocation >= 100) {
var time = date_format(total_micro_second);
that.updateTime(time);
}
if (countTooGetLocation >= 5000) { //1000為1s
that.getLocation();
countTooGetLocation = 0;
}
setTimeout
setTimeout(function(){
countTooGetLocation += 10;
total_micro_second += 10;
count_down(that);
}
,10
)
}
// 時間格式化輸出集索,如03:25:19 86寸齐。每10ms都會調(diào)用一次
function date_format(micro_second) {
// 秒數(shù)
var second = Math.floor(micro_second / 1000);
// 小時位
var hr = Math.floor(second / 3600);
// 分鐘位
var min = fill_zero_prefix(Math.floor((second - hr * 3600) / 60));
// 秒位
var sec = fill_zero_prefix((second - hr * 3600 - min * 60));// equal to => var sec = second % 60;
return hr + ":" + min + ":" + sec + " ";
}
function getDistance(lat1, lng1, lat2, lng2) {
var dis = 0;
var radLat1 = toRadians(lat1);
var radLat2 = toRadians(lat2);
var deltaLat = radLat1 - radLat2;
var deltaLng = toRadians(lng1) - toRadians(lng2);
var dis = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(deltaLat / 2), 2) + Math.cos(radLat1) * Math.cos(radLat2) * Math.pow(Math.sin(deltaLng / 2), 2)));
return dis * 6378137;
function toRadians(d) { return d * Math.PI / 180;}
}
function fill_zero_prefix(num) {
return num < 10 ? "0" + num : num
}
//****************************************************************************************
//****************************************************************************************
Page({
data: {
clock: '',
isLocation:false,
latitude: 0,
longitude: 0,
markers: [],
covers: [],
meters: 0.00,
time: "0:00:00"
},
//****************************
onLoad:function(options){
// 頁面初始化 options為頁面跳轉(zhuǎn)所帶來的參數(shù)
this.getLocation()
console.log("onLoad")
count_down(this);
},
//****************************
openLocation:function (){
wx.getLocation({
type: 'gcj02', // 默認為 wgs84 返回 gps 坐標,gcj02 返回可用于 wx.openLocation 的坐標
success: function(res){
wx.openLocation({
latitude: res.latitude, // 緯度抄谐,范圍為-90~90渺鹦,負數(shù)表示南緯
longitude: res.longitude, // 經(jīng)度,范圍為-180~180蛹含,負數(shù)表示西經(jīng)
scale: 28, // 縮放比例
})
},
})
},
//****************************
starRun :function () {
if (starRun == 1) {
return;
}
starRun = 1;
count_down(this);
this.getLocation();
},
//****************************
stopRun:function () {
starRun = 0;
count_down(this);
},
//****************************
updateTime:function (time) {
var data = this.data;
data.time = time;
this.data = data;
this.setData ({
time : time,
})
},
//****************************
getLocation:function () {
var that = this
wx.getLocation({
type: 'gcj02', // 默認為 wgs84 返回 gps 坐標毅厚,gcj02 返回可用于 wx.openLocation 的坐標
success: function(res){
console.log("res----------")
console.log(res)
//make datas
var newCover = {
latitude: res.latitude,
longitude: res.longitude,
iconPath: '/resources/redPoint.png',
};
var oriCovers = that.data.covers;
console.log("oriMeters----------")
console.log(oriMeters);
var len = oriCovers.length;
var lastCover;
if (len == 0) {
oriCovers.push(newCover);
}
len = oriCovers.length;
var lastCover = oriCovers[len-1];
console.log("oriCovers----------")
console.log(oriCovers,len);
var newMeters = getDistance(lastCover.latitude,lastCover.longitude,res.latitude,res.longitude)/1000;
if (newMeters < 0.0015){
newMeters = 0.0;
}
oriMeters = oriMeters + newMeters;
console.log("newMeters----------")
console.log(newMeters);
var meters = new Number(oriMeters);
var showMeters = meters.toFixed(2);
oriCovers.push(newCover);
that.setData({
latitude: res.latitude,
longitude: res.longitude,
markers: [],
covers: oriCovers,
meters:showMeters,
});
},
})
}
})
五、后語
本文是一個快速上手開發(fā)的介紹浦箱,細節(jié)介紹可以查看官方文檔
我的相關全部代碼放在github上-weChatApp-Run