This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
OpenSource
/
dc-sdk
mirror of
https://github.com/dvt3d/dc-sdk
Watch
4
Star
0
Fork
0
Code
Issues
0
Releases
92
Wiki
Activity
Browse Source
change the viewBounds return values
tags/2.1.2
Caven Chen
4 years ago
parent
e5f23ea3e4
commit
09f327a75a
1 changed files
with
4 additions
and
4 deletions
Split View
Show Diff Stats
4
4
modules/viewer/Viewer.js
+ 4
- 4
modules/viewer/Viewer.js
View File
@@ -167,10 +167,10 @@ class Viewer {
return undefined
}
return {
minX
: min.lng,
minY
: min.lat,
maxX
: max.lng,
maxY
: max.lat
west
: min.lng,
south
: min.lat,
east
: max.lng,
north
: max.lat
}
}
Write
Preview
Loading…
Cancel
Save