Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
NewTruckTerminalSyetem
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SQL_Mou
NewTruckTerminalSyetem
Commits
29477bde
Commit
29477bde
authored
Sep 05, 2022
by
xxx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
f36d4aea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
index.vue
src/views/MLargeScreen/index.vue
+11
-2
No files found.
src/views/MLargeScreen/index.vue
View file @
29477bde
...
...
@@ -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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment