Commit 29477bde authored by xxx's avatar xxx

1

parent f36d4aea
...@@ -258,12 +258,21 @@ export default { ...@@ -258,12 +258,21 @@ export default {
}, },
//获取该车位置并上传到后端 //获取该车位置并上传到后端
getCarLoaction(){ getCarLoaction(){
let that = this;
if(navigator.geolocation) { if(navigator.geolocation) {
navigator.geolocation.getCurrentPosition( navigator.geolocation.getCurrentPosition(
//locationSuccess 获取成功的话 //locationSuccess 获取成功的话
function(position) { function(position) {
console.log(position.coords.longitude)//弹出经度测试 let LoaObj1 = {};
console.log(position.coords.latitude) 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 获取失败的话 //locationError 获取失败的话
function(error) { 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