123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- //index.js
- var amapFile = require('../../libs/amap-wx.js');
- var config = require('../../libs/config.js');
- var server = require('../../libs/config.js');
- //获取应用实例
- var app = getApp()
- var myAmapFun = null;
- var that = null;
- Page({
- data: {
- scale: 18,
- latitude: 0,
- longitude: 0,
- placeName: '',
- userId: '',
- positionInfo: {},
- latitude2: 0,
- longitude2: 0,
- },
- // 页面加载
- onLoad: function (options) {
- var key = config.Config.key;
- that = this;
- myAmapFun = new amapFile.AMapWX({ key: key });
- // 保持屏幕常亮
- wx.setKeepScreenOn({
- keepScreenOn: true
- })
- // 1.获取定时器,用于判断是否已经在计费
- this.timer = options.timer;
- this.setData({
- userId: options.userId
- })
- app.globalData.nwUserid = options.userId
- // 2.获取并设置当前位置经纬度
- wx.getLocation({
- type: "gcj02",
- success: (res) => {
- that.setData({
- longitude: res.longitude,
- latitude: res.latitude
- });
- }
- });
- myAmapFun.getRegeo({
- success: function (data) {
- that.setData({
- placeName: data[0].name + ' ' + data[0].desc
- })
- },
- fail: function (info) {
- // wx.showModal({title:info.errMsg})
- }
- })
- // 3.设置地图控件的位置及大小,通过设备宽高定位
- wx.getSystemInfo({
- success: (res) => {
- this.setData({
- controls: [{
- id: 1,
- iconPath: '/img/location.png',
- position: {
- left: 20,
- top: res.windowHeight - 120,
- width: 50,
- height: 50
- },
- clickable: true
- },
- // {
- // id: 6,
- // iconPath: '/img/avatar.png',
- // position: {
- // left: res.windowWidth - 68,
- // top: 200,
- // width: 45,
- // height: 45
- // },
- // clickable: true
- // },
- {
- id: 3,
- iconPath: '/img/weather.png',
- position: {
- left: res.windowWidth - 68,
- top: 45,
- width: 45,
- height: 45
- },
- clickable: true
- },
- {
- id: 4,
- iconPath: '/img/marker.png',
- position: {
- left: res.windowWidth / 2 - 11,
- top: res.windowHeight / 2 - 45,
- width: 22,
- height: 35
- },
- clickable: true
- },
- {
- id: 5,
- iconPath: '/img/avatar.png',
- position: {
- left: res.windowWidth - 68,
- top: 120,
- width: 45,
- height: 45
- },
- clickable: true
- },
- {
- id: 6,
- iconPath: '/img/upload.png',
- position: {
- left: res.windowWidth - 68,
- top: 195,
- width: 45,
- height: 45
- },
- clickable: true
- }]
- })
- }
- });
- // 4.请求服务器,显示附近的单车,用marker标记
- wx.request({
- url: server.Server.url + '/api/user/getTeamUsers/' + app.globalData.nwUserid,
- data: {},
- method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
- // header: {}, // 设置请求的 header
- success: (res) => {
- this.setData({
- markers: res.data
- })
- },
- fail: function (res) {
- // fail
- },
- complete: function (res) {
- // complete
- }
- })
- this.timer2 = setInterval(() => {
- that = this
- wx.getLocation({
- type: "gcj02",
- success: function (res) {
- that.setData({
- longitude2: res.longitude,
- latitude2: res.latitude
- });
- },
- })
- myAmapFun.getRegeo({
- success: function (data) {
- that.setData({
- positionInfo: {
- positionId: app.globalData.nwUserid,
- longitude: that.data.longitude2,
- latitude: that.data.latitude2,
- locateName: data[0].name,
- locateDesc: data[0].desc
- }
- })
-
- console.log(that.data.positionInfo.latitude+' '+that.data.positionInfo.longitude)
- wx.request({
- url: server.Server.url + '/api/position/update',
- data: { pos: that.data.positionInfo },
- method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
- // header: {}, // 设置请求的 header
- success: (res) => {
- },
- fail: function (res) {
- // fail
- },
- complete: function (res) {
- // complete
- }
- })
- },
- fail: function (info) {
- // wx.showModal({title:info.errMsg})
- }
- })
- }, 3000)
- },
- // 页面显示
- onShow: function () {
- // 1.创建地图上下文,移动当前位置到地图中心
- this.mapCtx = wx.createMapContext("ofoMap");
- this.movetoPosition()
- },
- // 地图控件点击事件
- bindcontroltap: function (e) {
- // 判断点击的是哪个控件 e.controlId代表控件的id,在页面加载时的第3步设置的id
- switch (e.controlId) {
- // 点击定位控件
- case 1: this.movetoPosition();
- myAmapFun.getRegeo({
- success: function (data) {
- that.setData({
- placeName: data[0].name + ' ' + data[0].desc
- })
- },
- fail: function (info) {
- // wx.showModal({title:info.errMsg})
- }
- })
- break;
- // 点击立即用车,判断当前是否正在计费
- case 2: if (this.timer === "" || this.timer === undefined) {
- // 没有在计费就扫码
- wx.scanCode({
- success: (res) => {
- // 正在获取密码通知
- wx.showLoading({
- title: '正在获取密码',
- mask: true
- })
- // 请求服务器获取密码和车号
- wx.request({
- url: 'https://www.easy-mock.com/mock/59098d007a878d73716e966f/ofodata/password',
- data: {},
- method: 'GET',
- success: function (res) {
- // 请求密码成功隐藏等待框
- wx.hideLoading();
- // 携带密码和车号跳转到密码页
- wx.redirectTo({
- url: '../scanresult/index?password=' + res.data.data.password + '&number=' + res.data.data.number,
- success: function (res) {
- wx.showToast({
- title: '获取密码成功',
- duration: 1000
- })
- }
- })
- }
- })
- }
- })
- // 当前已经在计费就回退到计费页
- } else {
- wx.navigateBack({
- delta: 1
- })
- }
- break;
- // 点击保障控件,跳转到报障页
- case 3: wx.navigateTo({
- url: '../weather/weather'
- });
- break;
- // 点击头像控件,跳转到个人中心
- case 5: wx.navigateTo({
- url: '../my/index'
- });
- break;
- case 6: wx.navigateTo({
- url: '../upload/index'
- });
- default: break;
- }
- },
- // 地图视野改变事件
- bindregionchange: function (e) {
- // 拖动地图,获取附件单车位置
- if (e.type == "begin") {
- wx.request({
- url: server.Server.url + '/api/user/getTeamUsers/' + app.globalData.nwUserid,
- data: {},
- method: 'GET',
- success: (res) => {
-
- this.setData({
-
- _markers: res.data
- })
- }
- })
- // 停止拖动,显示单车位置
- } else if (e.type == "end") {
- console.log(e.currentTarget)
- this.data.markers=[];
-
- this.setData({
- markers: this.data._markers
- })
-
- }
- },
- // 地图标记点击事件,连接用户位置和点击的单车位置
- bindmarkertap: function (e) {
- console.log(e);
- let _markers = this.data.markers;
- let markerId = e.markerId;
- let currMaker = _markers[markerId];
- wx.makePhoneCall({
- phoneNumber: markerId //仅为示例,并非真实的电话号码
- })
-
- },
- // 定位函数,移动位置到地图中心
- movetoPosition: function () {
- this.mapCtx.moveToLocation();
- }
- })
|