Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
android_fiveworld
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
android
android_fiveworld
Commits
1c22a49a
Commit
1c22a49a
authored
Aug 04, 2021
by
fengruiyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
js两次
parent
37c15098
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
7 deletions
+15
-7
zsmap.js
app/src/main/assets/web/zsmap.js
+15
-7
No files found.
app/src/main/assets/web/zsmap.js
View file @
1c22a49a
...
...
@@ -211,12 +211,13 @@ var vm = new Vue({
},
B_initmap
:
function
(
point
,
zoomLevel
)
{
this
.
NOWUSEBAIDU
=
true
;
console
.
log
(
"initB==>"
,
point
,
zoomLevel
)
// setTimeout(function () {
if
(
zoomLevel
==
undefined
||
zoomLevel
==
null
)
zoomLevel
=
6
;
var
th
=
vm
;
if
(
th
.
B_MAPINITED
==
false
)
{
console
.
log
(
">>>>>>>initB==>"
,
point
,
zoomLevel
)
th
.
B_MAPINITED
=
true
;
// 百度地图API功能
// $("#map").hide();
...
...
@@ -247,7 +248,14 @@ var vm = new Vue({
}
else
{
B_MAP
.
centerAndZoom
(
new
BMap
.
Point
(
point
.
lng
,
point
.
lat
),
zoomLevel
);
// 初始化地图,设置中心点坐标和地图级别
console
.
log
(
">>>>>>>"
,
point
,
B_MAP
.
getCenter
())
setTimeout
(
function
(){
B_MAP
.
centerAndZoom
(
new
BMap
.
Point
(
point
.
lng
,
point
.
lat
),
zoomLevel
);
// 初始化地图,设置中心点坐标和地图级别
},
500
)
//console.log(">>>>>>>", point, B_MAP.getCenter())
console
.
log
(
">>>>>>>cB==>"
,
B_MAP
.
getCenter
().
lat
,
B_MAP
.
getCenter
().
lng
,
zoomLevel
)
}
// },500)
},
...
...
@@ -285,11 +293,11 @@ var vm = new Vue({
G_MAP
.
setCenter
(
point
)
}
if
(
!
this
.
NOWUSEBAIDU
&&
this
.
B_MAPINITED
)
{
var
bpoint
=
toBPoint
(
point
)
console
.
log
(
"同步百度中心"
)
B_MAP
.
setCenter
(
bpoint
)
}
//
if (!this.NOWUSEBAIDU && this.B_MAPINITED) {
//
var bpoint = toBPoint(point)
//
console.log("同步百度中心")
//
B_MAP.setCenter(bpoint)
//
}
}
}
})
...
...
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