linwei
2026-06-28 0d1a0cfad99bce85d7ae376351afa995d1471b43
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 = [117.815748, 28.069021]
 
  global.viewer.flyToPosition(
    new global.DC.Position(
      Number(homeCenter[0]),
      Number(homeCenter[1]),
      Number(36000),
      Number(-3),
      Number(-45),
      Number(0)
    ),
    function () { },
    3
  )
 
  // 加派出所的
}