Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
方 梦梦
world51tocmap
Commits
fd378a3f
Commit
fd378a3f
authored
May 29, 2025
by
吕 成东
Browse files
修改 路劲规划
parent
80558aae
Changes
2
Hide whitespace changes
Inline
Side-by-side
index.html
View file @
fd378a3f
...
...
@@ -293,6 +293,7 @@
<!-- <script src="https://localhost:3000/gis_sdk/js/CMapLoader.map.js"></script> -->
<script
src=
"http://localhost:3000/gis_sdk/js/CMapLoader.map.js"
></script>
<script
src=
"./SignalLines.js"
></script>
<script
src=
"./pathplan.js"
></script>
<!-- <script src="./data.js"></script> -->
</head>
...
...
@@ -828,7 +829,7 @@
document
.
getElementById
(
"
addTrafficFlow
"
).
onclick
=
addTrafficFlow
;
async
function
addTrafficFlow
()
{
const
json
=
{
id
:
"
21e7a9e6d2884122804788dac1e002cc
"
,
//
id: "21e7a9e6d2884122804788dac1e002cc",
url
:
`ws://
${
ipAdd
}
:31000/ws/streamer/a9219e09346a44a28ee3d0aed79c27ea`
,
// 全部车辆
};
map
.
bindVehicle
(
json
);
...
...
@@ -853,74 +854,77 @@
document
.
getElementById
(
"
focusCar1
"
).
onclick
=
focusCar1
;
async
function
focusCar1
()
{
let
options
=
{
vehicleId
:
"
XM140004
"
,
// 仿AYZQS001
vehicleId
:
"
271
"
,
// 仿AYZQS001
perspective
:
1
,
// 1第一人称视角、3第三人称视角
};
map
.
getVehicle
(
"
21e7a9e6d2884122804788dac1e002cc
"
).
focusVehicle
(
options
);
map
.
focusVehicle
(
options
);
}
// 定位车辆(第三人称)
document
.
getElementById
(
"
focusCar3
"
).
onclick
=
focusCar3
;
async
function
focusCar3
()
{
let
options
=
{
vehicleId
:
"
XM140004
"
,
//仿AYZQS001
vehicleId
:
"
271
"
,
//仿AYZQS001
perspective
:
3
,
// 1第一人称视角、3第三人称视角
};
map
.
getVehicle
(
"
21e7a9e6d2884122804788dac1e002cc
"
).
focusVehicle
(
options
);
map
.
focusVehicle
(
options
);
}
// 清除定位
document
.
getElementById
(
"
focusNoneCar
"
).
onclick
=
focusNoneCar
;
async
function
focusNoneCar
()
{
map
.
getVehicle
(
"
21e7a9e6d2884122804788dac1e002cc
"
).
unfocusVehicle
();
map
.
unfocusVehicle
();
}
// 加载车辆路径规划
document
.
getElementById
(
"
loadarrowLineLaye
"
).
onclick
=
loadarrowLineLaye
;
function
loadarrowLineLaye
()
{
let
timestamp
=
1739419194500
;
var
pp
=
[];
for
(
var
key
in
roadPoints
)
{
timestamp
=
timestamp
+
2000
;
let
tt
=
{
vid
:
"
1
"
,
vmodel
:
"
1020001
"
,
vtype
:
"
0
"
,
coord
:
roadPoints
[
key
][
0
]
+
"
,
"
+
roadPoints
[
key
][
1
]
+
"
,
"
+
"
0.00
"
,
speed
:
46.92
,
timestamp
:
timestamp
,
};
pp
.
push
(
tt
);
}
console
.
log
(
pp
);
//行驶路线
// var option = {
// "id": '1604729991369719809',
// "vehicleId": '津A78F30',
// "coordinates": roadPoints,
// "height": 21,
// "width": 28,
// "color": "red" //red green yellow
// let timestamp = 1739419194500;
// var pp = [];
// for (var key in roadPoints51) {
// timestamp = timestamp + 2000;
// let tt = {
// vid: "1",
// vmodel: "1020001",
// vtype: "0",
// coord: roadPoints51[key][0] + "," + roadPoints51[key][1] + "," + "0.00",
// speed: 46.92,
// timestamp: timestamp,
// };
// pp.push(tt);
// }
// map.getVehicle("21e7a9e6d2884122804788dac1e002cc").addRoute(option) //初始化行驶路线
// console.log(pp);
//行驶路线
var
option
=
{
id
:
"
1604729991369719809
"
,
vehicleId
:
"
271
"
,
coordinates
:
roadPoints51
,
height
:
21
,
width
:
28
,
color
:
"
red
"
,
//red green yellow
};
map
.
getVehicle
().
addRoute
(
option
);
//初始化行驶路线
}
// 清除车辆路径规划
document
.
getElementById
(
"
cleanarrowLineLaye
"
).
onclick
=
cleanarrowLineLaye
;
function
cleanarrowLineLaye
()
{
map
.
getVehicle
(
"
21e7a9e6d2884122804788dac1e002cc
"
).
removeRoute
();
map
.
getVehicle
().
removeRoute
();
}
// 显示车辆路径规划
document
.
getElementById
(
"
showRoute
"
).
onclick
=
showRoute
;
function
showRoute
()
{
map
.
getVehicle
(
"
21e7a9e6d2884122804788dac1e002cc
"
).
showRoute
();
let
option
=
{
vehicleId
:
"
271
"
,
};
map
.
getVehicle
().
showRoute
(
option
);
}
// 隐藏车辆路径规划
document
.
getElementById
(
"
hideRoute
"
).
onclick
=
hideRoute
;
function
hideRoute
()
{
map
.
getVehicle
(
"
21e7a9e6d2884122804788dac1e002cc
"
).
hideRoute
();
map
.
getVehicle
().
hideRoute
();
}
// 创建感知目标物
...
...
@@ -1386,7 +1390,7 @@
if
(
item
.
objects
.
length
>
1
)
{
const
options2
=
{
id
:
item
.
id
,
id
:
item
.
id
,
vehicleId
:
[
item
.
objects
[
0
].
id
,
item
.
objects
[
1
].
id
],
//车辆ID
};
map
.
stopCommunication
(
options2
);
...
...
pathplan.js
0 → 100644
View file @
fd378a3f
const
roadPoints51
=
[[
117.371370630760694
,
39.009755631374162
],
[
117.371369807435059
,
39.009776769355213
],
[
117.371368869046648
,
39.009804083194396
],
[
117.371368227968873
,
39.009831518232929
],
[
117.371367626119621
,
39.009858855146007
],
[
117.371367099556096
,
39.009886113996266
],
[
117.371366574093059
,
39.00991335910971
],
[
117.371366355193487
,
39.009940598047201
],
[
117.371366401912084
,
39.009967748701179
],
[
117.371366798531042
,
39.00999510497978
],
[
117.371367180105054
,
39.010022198345972
],
[
117.371367724300924
,
39.01004941156279
],
[
117.37136838137657
,
39.01007651789152
],
[
117.371369219635469
,
39.010103689783406
],
[
117.3713698577005
,
39.010130708491957
],
[
117.371370973126105
,
39.01015790640669
],
[
117.371371783650389
,
39.010184944768092
],
[
117.371372554793652
,
39.010203822851444
],
[
117.371373769992317
,
39.010230917842321
],
[
117.3713749923362
,
39.010258172041041
],
[
117.371376208991961
,
39.010285299544037
],
[
117.371377427686909
,
39.010312465993863
],
[
117.371378669228974
,
39.010339476339716
],
[
117.371379925079196
,
39.010366631264411
],
[
117.371381176296907
,
39.010393686121212
],
[
117.371382445899229
,
39.010420792595433
],
[
117.371383714226141
,
39.010447877864891
],
[
117.371384970752459
,
39.010475148601891
],
[
117.371386239329141
,
39.010502306736576
],
[
117.371387509453214
,
39.01052949767363
],
[
117.371388774472635
,
39.010556579566611
],
[
117.37139004255738
,
39.010583731697089
],
[
117.371391302096328
,
39.010610898834912
],
[
117.37139259647526
,
39.010637972453914
],
[
117.371393888744109
,
39.010665002123034
],
[
117.371395214911743
,
39.010692021963436
],
[
117.371396543493702
,
39.010718959416629
],
[
117.371397873396134
,
39.010745801903361
],
[
117.371399150083292
,
39.010772681888973
],
[
117.371400418626763
,
39.010799509060838
],
[
117.371401678661869
,
39.010826330577409
],
[
117.371402932216455
,
39.010853252646783
],
[
117.371404190314919
,
39.010880054518694
],
[
117.371405367356004
,
39.010907091572136
],
[
117.371406507458659
,
39.010934035326812
],
[
117.371407593495917
,
39.010961028896787
],
[
117.371407961767588
,
39.010968494977668
],
[
117.371408353629562
,
39.01097643958547
],
[
117.371408767293417
,
39.01098482588506
],
[
117.371409200920624
,
39.010993617091273
],
[
117.371409652712728
,
39.011002776388999
],
[
117.371410120831172
,
39.011012266963036
],
[
117.371410603487547
,
39.011022052018291
],
[
117.371411098853329
,
39.011032094729579
],
[
117.371411605100008
,
39.011042358291746
],
[
117.371412120439132
,
39.011052805899681
],
[
117.371412643032187
,
39.011063400748213
],
[
117.371413171080718
,
39.011074106022207
],
[
117.3714137027562
,
39.011084884906495
],
[
117.37141423624017
,
39.011095700605928
],
[
117.37141476973413
,
39.011106516305389
],
[
117.371415301409584
,
39.011117295199696
],
[
117.37141582944804
,
39.011128000473711
],
[
117.371416352051057
,
39.011138595312303
],
[
117.371416867380091
,
39.011149042920287
],
[
117.371417373636689
,
39.011159306492559
],
[
117.371417869002372
,
39.011169349193935
],
[
117.371418351658605
,
39.011179134249282
],
[
117.371418819786953
,
39.01118862482344
],
[
117.371419271578901
,
39.011197784121272
],
[
117.371419705205952
,
39.011206575327613
],
[
117.371420118869665
,
39.011214961637329
],
[
117.371420510741501
,
39.011222906235254
],
[
117.371420879013016
,
39.011230372316263
],
[
117.371421409982574
,
39.011244927099867
],
[
117.371422623565806
,
39.01127202074975
],
[
117.371423905929333
,
39.01129878924575
],
[
117.371425138990219
,
39.01132578564313
],
[
117.371426421809332
,
39.011352824335894
],
[
117.371427771186148
,
39.011379942430253
],
[
117.371428997123346
,
39.011406948163597
],
[
117.371430319830068
,
39.011434028347587
],
[
117.371431618070375
,
39.011461063499866
],
[
117.371432853012507
,
39.011487964021249
],
[
117.371434155044767
,
39.011514954271313
],
[
117.371435458681518
,
39.011542109575089
],
[
117.371436643351245
,
39.011569178219894
],
[
117.371436942093013
,
39.011575976763979
],
[
117.371437233280048
,
39.011582548798344
],
[
117.371437517153851
,
39.011588902278213
],
[
117.371437793986004
,
39.011595045158863
],
[
117.371438064028069
,
39.011600985365504
],
[
117.371438327561634
,
39.01160673086342
],
[
117.371438584818208
,
39.011612289597828
],
[
117.371438836079392
,
39.011617669513996
],
[
117.371439081586686
,
39.011622878557148
],
[
117.37143932162175
,
39.011627924672553
],
[
117.371439556436059
,
39.011632815815446
],
[
117.371439786281201
,
39.01163755993106
],
[
117.371440011418713
,
39.011642164974667
],
[
117.371440232120207
,
39.01164663887149
],
[
117.37144044864722
,
39.011650989596809
],
[
117.37144066124128
,
39.011655225075835
],
[
117.371440870173984
,
39.011659353273828
],
[
117.371441075716902
,
39.011663382116041
],
[
117.371441278101528
,
39.011667319577697
],
[
117.371441477619499
,
39.011671173584077
],
[
117.37144167451234
,
39.011674952100407
],
[
117.37144186904159
,
39.011678663061929
],
[
117.371442061468855
,
39.011682314413896
],
[
117.371442252055658
,
39.01168591411156
],
[
117.371442441063579
,
39.011689470110163
],
[
117.371442628754167
,
39.011692990334957
],
[
117.371442815378984
,
39.011696482761174
],
[
117.371443001209599
,
39.011699955314072
],
[
117.371443186497558
,
39.011703415948887
],
[
117.371443371514459
,
39.011706872610894
],
[
117.371443556501788
,
39.011710333255301
],
[
117.371443741731156
,
39.011713805817372
],
[
117.371443927464128
,
39.011717298262361
],
[
117.371444113962255
,
39.011720818515514
],
[
117.371444301477069
,
39.011724374552067
],
[
117.371444490270164
,
39.011727974297266
],
[
117.371444680613109
,
39.011731625706368
],
[
117.371444872747418
,
39.011735336724598
],
[
117.371445066954692
,
39.011739115297246
],
[
117.371445263476446
,
39.011742969379512
],
[
117.371445462584305
,
39.011746906916663
],
[
117.371445664539777
,
39.011750935863965
],
[
117.37144586958442
,
39.011755064146612
],
[
117.371446077999821
,
39.011759299729903
],
[
117.371446290047544
,
39.011763650559075
],
[
117.371446505969146
,
39.011768124589359
],
[
117.371446726036154
,
39.011772729745999
],
[
117.371446950500143
,
39.011777473994243
],
[
117.371447179642686
,
39.011782365279373
],
[
117.371447413695336
,
39.011787411546578
],
[
117.371447652939665
,
39.011792620751159
],
[
117.371447897627192
,
39.011798000828335
],
[
117.371448148019525
,
39.011803559723347
],
[
117.371448404378199
,
39.011809305401457
],
[
117.371448666954777
,
39.011815245797898
],
[
117.371448936030831
,
39.011821388857946
],
[
117.371449211837898
,
39.011827742536809
],
[
117.371449494657554
,
39.011834314789766
],
[
117.371449784741344
,
39.01184111354204
],
[
117.371450006933003
,
39.011846342815218
],
[
117.371451194873273
,
39.01187430054155
],
[
117.371452339482829
,
39.011901238580919
],
[
117.371453482273083
,
39.011928133811509
],
[
117.371454341557879
,
39.011949355610568
],
[
117.371455397908804
,
39.011976634196458
],
[
117.371456398650849
,
39.012003726280341
],
[
117.371457359936983
,
39.012031095419601
],
[
117.371458261712149
,
39.012058324409914
],
[
117.371459103740591
,
39.012085761204801
],
[
117.371459848647874
,
39.012112882720736
],
[
117.371460461796673
,
39.012140032980902
],
[
117.371460930202659
,
39.012167308936817
],
[
117.371461196790165
,
39.012182833069133
],
[
117.371461435753716
,
39.012196748824501
],
[
117.371461716789227
,
39.01221311387382
],
[
117.371461262826116
,
39.012218280296857
],
[
117.371461098449345
,
39.012223199511276
],
[
117.371460976331136
,
39.012227817529428
],
[
117.371460795421896
,
39.012232127836597
],
[
117.3714605002166
,
39.01223620514137
],
[
117.371460034344736
,
39.012240017765777
],
[
117.37145938020528
,
39.012243607160769
],
[
117.371458506136747
,
39.012246926403407
],
[
117.371457316706568
,
39.012250088520211
],
[
117.371455777778749
,
39.012253051427741
],
[
117.371453889170581
,
39.012255797494873
],
[
117.371451897285681
,
39.012258207271351
],
[
117.371449451151122
,
39.01226053117216
],
[
117.37144674542624
,
39.012262670007438
],
[
117.371443770870755
,
39.01226461536907
],
[
117.371440528876008
,
39.01226635601202
],
[
117.371437031064787
,
39.012267883076973
],
[
117.371433599643836
,
39.012269048772005
],
[
117.371429622242147
,
39.01227012169884
],
[
117.371425444780215
,
39.012270990891203
],
[
117.371421079344131
,
39.012271666041833
],
[
117.371416534653193
,
39.012272157699293
],
[
117.371412071174532
,
39.012272455850479
],
[
117.371407157191413
,
39.012272580776568
],
[
117.371402083908833
,
39.012272556127954
],
[
117.371396852269683
,
39.012272390491162
],
[
117.371391472315779
,
39.012272092235271
],
[
117.37138592459749
,
39.012271667016563
],
[
117.371380368844825
,
39.012271112366264
],
[
117.371374498464277
,
39.012270434240307
],
[
117.371368485694987
,
39.012269655773068
],
[
117.371362334636174
,
39.012268783544243
],
[
117.371356048174533
,
39.012267823901702
],
[
117.371349688579542
,
39.012266782035475
],
[
117.371343122775158
,
39.012265654057359
],
[
117.371336426701319
,
39.012264461956789
],
[
117.371329600779461
,
39.012263211307712
],
[
117.371322616013614
,
39.012262012027101
],
[
117.371315504430598
,
39.012260790974665
],
[
117.371308235827044
,
39.012259542954936
],
[
117.371300842650783
,
39.01225827355659
],
[
117.371293320572661
,
39.012256982013035
],
[
117.371285671727009
,
39.012255668707404
],
[
117.371277898618985
,
39.012254334063385
],
[
117.371269991397867
,
39.01225297638608
],
[
117.37126197985593
,
39.012251600790215
],
[
117.371253855385049
,
39.012250205812769
],
[
117.371245622725084
,
39.012248792260806
],
[
117.371237287507697
,
39.0122473610827
],
[
117.371228849913194
,
39.012245912338692
],
[
117.371220331346365
,
39.012244449680885
],
[
117.371211725814547
,
39.01224297209022
],
[
117.371203034810804
,
39.01224147981889
],
[
117.371194272915631
,
39.012239975378776
],
[
117.37118543974816
,
39.012238458689254
],
[
117.371176537673307
,
39.012236930173842
],
[
117.371167576701978
,
39.01223539154757
],
[
117.371158558547748
,
39.012233843092964
],
[
117.371149488030639
,
39.012232285647258
],
[
117.371140370020854
,
39.012230720037735
],
[
117.371131180281978
,
39.0122292551073
],
[
117.371121949414047
,
39.012227786064386
],
[
117.371112686245709
,
39.012226315532956
],
[
117.371103388221755
,
39.012224844570056
],
[
117.371094066074988
,
39.01222337716316
],
[
117.371084719184282
,
39.012221914972393
],
[
117.371075349363821
,
39.012220461332348
],
[
117.371065954650049
,
39.012219020372775
],
[
117.371056541777762
,
39.012217598617134
],
[
117.371037368218538
,
39.012215056345376
],
[
117.371026802211745
,
39.012213519872361
],
[
117.371015726059397
,
39.012211909224071
],
[
117.37100418614834
,
39.012210231129373
],
[
117.370992228845409
,
39.012208492337145
],
[
117.370979900537577
,
39.012206699586336
],
[
117.370967247581774
,
39.012204859625911
],
[
117.370954316365101
,
39.012202979194917
],
[
117.37094115326471
,
39.01220106503245
],
[
117.370927804657839
,
39.012199123887683
],
[
117.370914316911751
,
39.012197162509821
],
[
117.370900736403897
,
39.01219518763817
],
[
117.37088710952176
,
39.012193206012071
],
[
117.370873482622883
,
39.012191224380949
],
[
117.370859902104996
,
39.01218924949432
],
[
117.370846414325811
,
39.012187288081698
],
[
117.370833065683229
,
39.012185346892764
],
[
117.370819902525142
,
39.012183432677162
],
[
117.370806971249607
,
39.012181552174681
],
[
117.370794318224725
,
39.012179712135122
],
[
117.37078198983869
,
39.012177919298374
],
[
117.370770032449727
,
39.01217618041435
],
[
117.3707584924462
,
39.012174502213021
],
[
117.370747416196423
,
39.012172891464417
],
[
117.370736850098922
,
39.012171354888615
],
[
117.370726840502087
,
39.01216989923568
],
[
117.370717433804487
,
39.01216853126575
],
[
117.37068676181147
,
39.012163820652724
],
[
117.370665717376028
,
39.012160559632377
],
[
117.370634425567928
,
39.012155465253855
],
[
117.370625902478551
,
39.012154078469649
],
[
117.370617597398279
,
39.01215272871486
],
[
117.370609504525035
,
39.012151414970781
],
[
117.370601618066729
,
39.012150136218743
],
[
117.370593932211193
,
39.012148891409986
],
[
117.37058644115632
,
39.012147679545798
],
[
117.370579139099945
,
39.012146499587452
],
[
117.370572020249938
,
39.012145350506223
],
[
117.370565078784097
,
39.012144231283322
],
[
117.370558308900257
,
39.012143140890011
],
[
117.370551704816265
,
39.012142078307555
],
[
117.370545260709903
,
39.012141042497149
],
[
117.370538970778938
,
39.01214003244003
],
[
117.370532829231223
,
39.012139047117429
],
[
117.370526830254519
,
39.01213808550056
],
[
117.370520968046591
,
39.012137146560612
],
[
117.37051523680519
,
39.012136229278809
],
[
117.370509630728108
,
39.012135332616339
],
[
117.370504144013125
,
39.012134455554396
],
[
117.370498770857949
,
39.012133597074182
],
[
117.370493505450298
,
39.012132756146855
],
[
117.370488341997998
,
39.012131931743625
],
[
117.370483274688695
,
39.012131122835648
],
[
117.370478297730173
,
39.012130328404105
],
[
117.370473405300103
,
39.012129547420152
],
[
117.370468591616273
,
39.012128778864977
],
[
117.370463850866329
,
39.012128021699731
],
[
117.370459177248023
,
39.012127274915578
],
[
117.370454564959047
,
39.012126537473655
],
[
117.370450008187078
,
39.012125808355115
],
[
117.370445501139841
,
39.012125086531135
],
[
117.370441038015016
,
39.012124370972835
],
[
117.370436613000294
,
39.012123660661366
],
[
117.370432220293353
,
39.012122954577855
],
[
117.370427854101877
,
39.01212225167346
],
[
117.370423508603523
,
39.012121550949288
],
[
117.370419178016007
,
39.012120851356507
],
[
117.370414856526978
,
39.012120151886222
],
[
117.370410538324066
,
39.012119451509548
],
[
117.370406217624989
,
39.012118749197647
],
[
117.370401888597357
,
39.012118043921589
],
[
117.370397545468848
,
39.012117334662534
],
[
117.370393182417132
,
39.012116620401592
],
[
117.370388793639819
,
39.012115900089846
],
[
117.370384373334559
,
39.012115172728421
],
[
117.370379915709023
,
39.012114437268444
],
[
117.37037541494081
,
39.012113692700986
],
[
117.37037086524758
,
39.012112937987176
],
[
117.370366260806946
,
39.012112172118101
],
[
117.370361595826523
,
39.012111394054855
],
[
117.370356864503947
,
39.012110602768523
],
[
117.37035206102685
,
39.012109797250204
],
[
117.370347179602803
,
39.012108976460986
],
[
117.370342214419438
,
39.012108139381944
],
[
117.370337159674335
,
39.012107284984154
],
[
117.370332009565089
,
39.012106412238687
],
[
117.370326758299342
,
39.012105520126639
],
[
117.370321400054621
,
39.012104607619044
],
[
117.37031592903854
,
39.01210367368698
],
[
117.370310339448679
,
39.012102717311507
],
[
117.370304625482575
,
39.012101737463681
],
[
117.370298781327804
,
39.012100733124534
],
[
117.370292801191937
,
39.012099703255132
],
[
117.370286679262492
,
39.012098646836499
],
[
117.370280409737035
,
39.012097562839656
],
[
117.370273986823108
,
39.012096450245664
],
[
117.370267404698183
,
39.012095308025515
],
[
117.370260657579863
,
39.012094135150257
],
[
117.370253739645563
,
39.012092930600858
],
[
117.370246645102853
,
39.012091693338348
],
[
117.370239368149228
,
39.012090422353729
],
[
117.370231902972122
,
39.012089116617972
],
[
117.370224243779035
,
39.012087775102074
],
[
117.370216384757427
,
39.012086396766996
],
[
117.37020832011477
,
39.012084980613722
],
[
117.370200044028451
,
39.012083525593184
],
[
117.370191550715958
,
39.012082030696369
],
[
117.370191550716953
,
39.012082030691467
],
[
117.370186198253833
,
39.012081088094497
],
[
117.370152374962245
,
39.012075121151987
],
[
117.370118791785131
,
39.012069134413295
],
[
117.37008504758424
,
39.012062951409639
],
[
117.370051292677275
,
39.012056751825881
],
[
117.370017552802253
,
39.012050501102912
],
[
117.369983795562646
,
39.012044308205965
],
[
117.369950060907158
,
39.012037948052551
],
[
117.369916336282515
,
39.012031523554896
],
[
117.369882654366592
,
39.012025084790231
],
[
117.369848979225338
,
39.012018624626108
],
[
117.369818598871277
,
39.012012766131221
],
[
117.369785140879898
,
39.012006221974488
],
[
117.369750811670997
,
39.011999465621429
],
[
117.369717200528839
,
39.011992811050419
],
[
117.36968360008585
,
39.011986109903603
],
[
117.369651629161041
,
39.011979683802636
],
[
117.369618030318435
,
39.011972991999443
],
[
117.369582485423848
,
39.011965746521348
],
[
117.369548936756061
,
39.011958891548346
],
[
117.36951538430371
,
39.011952019783109
],
[
117.369479358013066
,
39.011944283154413
],
[
117.369445926652702
,
39.011937097367742
],
[
117.369412493228879
,
39.011929910900804
],
[
117.369379075604954
,
39.011922662238561
],
[
117.369345670576578
,
39.01191537831491
],
[
117.369312274758684
,
39.011908044053222
],
[
117.369278656410444
,
39.011900533700356
],
[
117.369245338993849
,
39.011893019757075
],
[
117.369212022307934
,
39.01188550275684
],
[
117.36917872045629
,
39.011877946054973
],
[
117.369145480908713
,
39.01187038664559
]];
;
\ No newline at end of file
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