1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| export const initMapPosition = () => {
| // 需要做判断
|
| // 分局的
| const homeCenter = [118.0379085985883, 28.112541349646797]
|
| global.viewer.flyToPosition(
| new global.DC.Position(
| Number(homeCenter[0]),
| Number(homeCenter[1]),
| Number(36000),
| Number(-3),
| Number(-45),
| Number(0)
| ),
| function () { },
| 3
| )
|
| // 加派出所的
| }
|
|