Commit 29477bde authored by xxx's avatar xxx

1

parent f36d4aea
......@@ -258,12 +258,21 @@ export default {
},
//获取该车位置并上传到后端
getCarLoaction(){
let that = this;
if(navigator.geolocation) {
navigator.geolocation.getCurrentPosition(
//locationSuccess 获取成功的话
function(position) {
console.log(position.coords.longitude)//弹出经度测试
console.log(position.coords.latitude)
let LoaObj1 = {};
let LoaObj1xy = {};
LoaObj1xy.x = position.coords.longitude;
LoaObj1xy.y = position.coords.latitude;
LoaObj1.gndRate = '';
LoaObj1.location = LoaObj1xy;
LoaObj1.name = that.equipmentName;
LoaObj1.time = new Date().getTime();
console.log(JSON.stringify(LoaObj1));
//httpPostForJson(carRealTimeLocationQuery2,JSON.stringify(LoaObj1)).then((res1) => {})
},
//locationError 获取失败的话
function(error) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment