-
Notifications
You must be signed in to change notification settings - Fork 3
/
routeMap.html
2598 lines (2539 loc) · 194 KB
/
routeMap.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- Made by Penguin -->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Index Page</title>
<link rel="stylesheet" href="./assets/styles/styles.css">
</head>
<body class="pg-app withoutHeader" id="pg-app">
<nav class="nav-head">
<div class="container" id="pg-app-head">
<div class="nav-description" id="top-description"><span>广州地铁指南</span></div>
<div class="nav-inputModel">
<div contenteditable="true" onclick="this.innerText=''"></div>
</div>
<div id="ResultDisplay"></div>
</div>
</nav>
<div class="pg-app-wrap" id="pg-app-wrap">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 2000 1800"
id="map">
<style>
.st0 {
fill: #fff
}
.st1 {
fill: #9fa0a0
}
.st2 {
fill: #88822b
}
.st3 {
fill: #733430
}
.st4 {
fill: #075d8e
}
.st5 {
fill: #1f1e44
}
.st6 {
fill: #157a3b
}
.st7 {
fill: #ae1c3b
}
.st8 {
fill: #752057
}
.st9 {
fill: #8ebc31
}
.st10 {
fill: #118188
}
.st11 {
fill: #6db98d
}
.st12 {
fill: #dac263
}
.st13 {
fill: #dd9961
}
.st14 {
fill: #b4c530
}
.st15 {
fill: none;
stroke: #b4c530;
stroke-width: 5;
stroke-miterlimit: 10
}
.st16 {
fill: #595757
}
.st18 {
font-size: 9px
}
.st20 {
font-size: 6px
}
.st22, .st25, .st27 {
fill: none;
stroke: #733430;
stroke-width: 5;
stroke-miterlimit: 10
}
.st25, .st27 {
stroke: #118188
}
.st27 {
stroke: #752057
}
.st28 {
opacity: .5
}
.st30 {
font-size: 4px
}
.st31, .st33, .st36 {
fill: none;
stroke: #ae1c3b;
stroke-width: 5;
stroke-miterlimit: 10
}
.st33, .st36 {
stroke: #dd9961
}
.st36 {
stroke: #fff
}
.st38 {
font-size: 7px
}
.st40 {
opacity: .75;
fill: #fff
}
.st41, .st42 {
fill: #fff;
stroke: #fff;
stroke-miterlimit: 10
}
.st42 {
stroke: #9fa0a0
}
.st46 {
font-size: 16px
}
.st47 {
font-size: 12px
}
.st50 {
font-size: 5px
}
.st51 {
fill: #1aa7d3
}
.st53 {
fill: #c30d23
}
.st54 {
fill: #f39800
}
.st55 {
fill: #e1944e
}
.st56 {
font-size: 48px
}
.st57 {
fill: #e3a651
}
.st58 {
fill: #bc7c40
}
.st59 {
font-size: 36px
}
.st61 {
fill: #ea5514
}
.st64 {
letter-spacing: 32px
}
.st66 {
font-size: 10px
}
.st68 {
letter-spacing: 33px
}
.st72 {
font-size: 8px
}
</style>
<symbol id="Interchange" viewBox="-5.6 -4 11.2 8">
<path d="M1.6-4c2.2 0 4 1.8 4 4s-1.8 4-4 4h-3.2c-2.2 0-4-1.8-4-4s1.8-4 4-4h3.2z" class="st0"/>
<path d="M-1.6-2.7c-1.5 0-2.7 1.2-2.7 2.7s1.2 2.7 2.7 2.7h3.2c1.5 0 2.7-1.2 2.7-2.7S3.1-2.7 1.6-2.7h-3.2z"
class="st0"/>
<path d="M1.6 2.2c1.2 0 2.2-1 2.2-2.2 0-1.2-1-2.2-2.2-2.2h-3.2c-1.2 0-2.2 1-2.2 2.2 0 1.2 1 2.2 2.2 2.2h3.2m0 1h-3.2c-1.8 0-3.2-1.4-3.2-3.2 0-1.8 1.4-3.2 3.2-3.2h3.2c1.8 0 3.2 1.4 3.2 3.2 0 1.8-1.4 3.2-3.2 3.2z"
class="st1"/>
</symbol>
<symbol id="Line1" viewBox="-2.5 -2.5 5 5">
<circle r="2" class="st0"/>
<path d="M0 1.5C.8 1.5 1.5.8 1.5 0S.8-1.5 0-1.5-1.5-.8-1.5 0-.8 1.5 0 1.5m0 1c-1.4 0-2.5-1.1-2.5-2.5S-1.4-2.5 0-2.5 2.5-1.4 2.5 0 1.4 2.5 0 2.5z"
class="st12"/>
</symbol>
<symbol id="Line2" viewBox="-2.5 -2.5 5 5">
<circle r="2" class="st0"/>
<path d="M0 1.5C.8 1.5 1.5.8 1.5 0S.8-1.5 0-1.5-1.5-.8-1.5 0-.8 1.5 0 1.5m0 1c-1.4 0-2.5-1.1-2.5-2.5S-1.4-2.5 0-2.5 2.5-1.4 2.5 0 1.4 2.5 0 2.5z"
class="st4"/>
</symbol>
<symbol id="Line3" viewBox="-2.5 -2.5 5 5">
<g id="i9_4_">
<circle r="2" class="st0"/>
<path d="M0 1.5C.8 1.5 1.5.8 1.5 0S.8-1.5 0-1.5-1.5-.8-1.5 0-.8 1.5 0 1.5m0 1c-1.4 0-2.5-1.1-2.5-2.5S-1.4-2.5 0-2.5 2.5-1.4 2.5 0 1.4 2.5 0 2.5z"
class="st13"/>
</g>
</symbol>
<symbol id="Line4" viewBox="-2.5 -2.5 5 5">
<circle r="2" class="st0"/>
<path d="M0 1.5C.8 1.5 1.5.8 1.5 0S.8-1.5 0-1.5-1.5-.8-1.5 0-.8 1.5 0 1.5m0 1c-1.4 0-2.5-1.1-2.5-2.5S-1.4-2.5 0-2.5 2.5-1.4 2.5 0 1.4 2.5 0 2.5z"
class="st6"/>
</symbol>
<symbol id="Line5" viewBox="-2.5 -2.5 5 5">
<circle r="2" class="st0"/>
<path d="M0 1.5C.8 1.5 1.5.8 1.5 0S.8-1.5 0-1.5-1.5-.8-1.5 0-.8 1.5 0 1.5m0 1c-1.4 0-2.5-1.1-2.5-2.5S-1.4-2.5 0-2.5 2.5-1.4 2.5 0 1.4 2.5 0 2.5z"
class="st7"/>
</symbol>
<symbol id="Line6" viewBox="-2.5 -2.5 5 5">
<circle r="2" class="st0"/>
<path d="M0 1.5C.8 1.5 1.5.8 1.5 0S.8-1.5 0-1.5-1.5-.8-1.5 0-.8 1.5 0 1.5m0 1c-1.4 0-2.5-1.1-2.5-2.5S-1.4-2.5 0-2.5 2.5-1.4 2.5 0 1.4 2.5 0 2.5z"
class="st8"/>
</symbol>
<symbol id="Line7" viewBox="-2.5 -2.5 5 5">
<g id="i66_3_">
<circle r="2" class="st0"/>
<path d="M0 1.5C.8 1.5 1.5.8 1.5 0S.8-1.5 0-1.5-1.5-.8-1.5 0-.8 1.5 0 1.5m0 1c-1.4 0-2.5-1.1-2.5-2.5S-1.4-2.5 0-2.5 2.5-1.4 2.5 0 1.4 2.5 0 2.5z"
class="st9"/>
</g>
</symbol>
<symbol id="Line8" viewBox="-2.5 -2.5 5 5">
<g id="i135_8_">
<g id="i66_10_">
<circle r="2" class="st0"/>
<path d="M0 1.5C.8 1.5 1.5.8 1.5 0S.8-1.5 0-1.5-1.5-.8-1.5 0-.8 1.5 0 1.5m0 1c-1.4 0-2.5-1.1-2.5-2.5S-1.4-2.5 0-2.5 2.5-1.4 2.5 0 1.4 2.5 0 2.5z"
class="st10"/>
</g>
</g>
</symbol>
<symbol id="Line9" viewBox="-2.5 -2.5 5 5">
<g id="i37_21_">
<g id="i9_38_">
<circle r="2" class="st0"/>
<path d="M0 1.5C.8 1.5 1.5.8 1.5 0S.8-1.5 0-1.5-1.5-.8-1.5 0-.8 1.5 0 1.5m0 1c-1.4 0-2.5-1.1-2.5-2.5S-1.4-2.5 0-2.5 2.5-1.4 2.5 0 1.4 2.5 0 2.5z"
class="st11"/>
</g>
</g>
</symbol>
<symbol id="Line13" viewBox="-2.5 -2.5 5 5">
<circle r="2" class="st0"/>
<path d="M0 1.5C.8 1.5 1.5.8 1.5 0S.8-1.5 0-1.5-1.5-.8-1.5 0-.8 1.5 0 1.5m0 1c-1.4 0-2.5-1.1-2.5-2.5S-1.4-2.5 0-2.5 2.5-1.4 2.5 0 1.4 2.5 0 2.5z"
class="st2"/>
</symbol>
<symbol id="Line14" viewBox="-2.5 -2.5 5 5">
<g id="i37_34_">
<g id="i9_51_">
<circle r="2" class="st0"/>
<path d="M0 1.5C.8 1.5 1.5.8 1.5 0S.8-1.5 0-1.5-1.5-.8-1.5 0-.8 1.5 0 1.5m0 1c-1.4 0-2.5-1.1-2.5-2.5S-1.4-2.5 0-2.5 2.5-1.4 2.5 0 1.4 2.5 0 2.5z"
class="st3"/>
</g>
</g>
</symbol>
<symbol id="Line21" viewBox="-2.5 -2.5 5 5">
<circle r="2" class="st0"/>
<path d="M0 1.5C.8 1.5 1.5.8 1.5 0S.8-1.5 0-1.5-1.5-.8-1.5 0-.8 1.5 0 1.5m0 1c-1.4 0-2.5-1.1-2.5-2.5S-1.4-2.5 0-2.5 2.5-1.4 2.5 0 1.4 2.5 0 2.5z"
class="st5"/>
</symbol>
<symbol id="LineGF" viewBox="-2.5 -2.5 5 5">
<circle r="2" class="st0"/>
<path d="M0 1.5C.8 1.5 1.5.8 1.5 0S.8-1.5 0-1.5-1.5-.8-1.5 0-.8 1.5 0 1.5m0 1c-1.4 0-2.5-1.1-2.5-2.5S-1.4-2.5 0-2.5 2.5-1.4 2.5 0 1.4 2.5 0 2.5z"
class="st14"/>
</symbol>
<g id="mapinner" class="svginner">
<g id="Line_GF">
<path d="M650 1175H437.5c-6.9 0-12.5 5.6-12.5 12.5v200c0 6.9-5.6 12.5-12.5 12.5h-150c-6.9 0-12.5 5.6-12.5 12.5v225c0 6.9 5.6 12.5 12.5 12.5H400M650 1175h50v25c0 8 3.2 15.7 8.8 21.3l57.3 57.3c5.7 5.7 13.3 8.8 21.3 8.8H1050"
class="st15"/>
<text id="n_209" transform="translate(386.5002 1665.0004)">
<tspan x="0" y="0" class="st16 st17 st18">新城东</tspan>
<tspan x="-7" y="7" class="st1 st19 st20">Xincheng Dong</tspan>
</text>
<text id="n_210" transform="translate(341.0002 1665.0004)">
<tspan x="0" y="0" class="st16 st17 st18">东平</tspan>
<tspan x="-3.7" y="7" class="st1 st19 st20">Dongping</tspan>
</text>
<text id="n_211" transform="translate(286.4999 1664.9998)">
<tspan x="0" y="0" class="st16 st17 st18">世纪莲</tspan>
<tspan x="2.9" y="7" class="st1 st19 st20">Shijilian</tspan>
</text>
<text id="n_212" transform="translate(224.4998 1624.9998)">
<tspan x="0" y="0" class="st16 st17 st18">澜石</tspan>
<tspan x="-.3" y="7" class="st1 st19 st20">Lanshi</tspan>
</text>
<text id="n_213" transform="translate(215.4999 1575.0002)">
<tspan x="0" y="0" class="st16 st17 st18">魁奇路</tspan>
<tspan x="5.4" y="7" class="st1 st19 st20">Kuiqi Lu</tspan>
</text>
<text id="n_214" transform="translate(215.5 1524.9996)">
<tspan x="0" y="0" class="st16 st17 st18">季华园</tspan>
<tspan x="-.3" y="7" class="st1 st19 st20">Jihua Park</tspan>
</text>
<text id="n_215" transform="translate(215.5 1475.0002)">
<tspan x="0" y="0" class="st16 st17 st18">同济路</tspan>
<tspan x="2.1" y="7" class="st1 st19 st20">Tongji Lu</tspan>
</text>
<text id="n_216" transform="translate(224.5 1424.9996)">
<tspan x="0" y="0" class="st16 st17 st18">祖庙</tspan>
<tspan x="-2.7" y="7" class="st1 st19 st20">Zumiao</tspan>
</text>
<text id="n_217" transform="translate(269.5002 1385)">
<tspan x="0" y="0" class="st16 st17 st18">普君北路</tspan>
<tspan x="2.7" y="7" class="st1 st19 st20">Pujun Beilu</tspan>
</text>
<text id="n_218" transform="translate(328.5 1415.0001)">
<tspan x="0" y="0" class="st16 st17 st18">朝安</tspan>
<tspan x="-1.3" y="7" class="st1 st19 st20">Chaoan</tspan>
</text>
<text id="n_219" transform="translate(378.4998 1384.9999)">
<tspan x="0" y="0" class="st16 st17 st18">桂城</tspan>
<tspan x="-3.7" y="7" class="st1 st19 st20">Guicheng</tspan>
</text>
<text id="n_220" transform="translate(432.4998 1362.5004)">
<tspan x="0" y="0" class="st16 st17 st18">南桂路</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Nangui Lu</tspan>
</text>
<text id="n_221" transform="translate(432.4998 1312.4999)">
<tspan x="0" y="0" class="st16 st17 st18">𧒽岗</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Leigang</tspan>
</text>
<text id="n_222" transform="translate(432.5 1262.5)">
<tspan x="0" y="0" class="st16 st17 st18">千灯湖</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Qiandenghu Lake</tspan>
</text>
<text id="n_223" transform="translate(432.5 1212.5)">
<tspan x="0" y="0" class="st16 st17 st18">金融高新区</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Financial Hi-Tech Zone</tspan>
</text>
<text id="n_224" transform="translate(441.0002 1160)">
<tspan x="0" y="0" class="st16 st17 st18">龙溪</tspan>
<tspan x="-.2" y="7" class="st1 st19 st20">Longxi</tspan>
</text>
<text id="n_225" transform="translate(491.0002 1159.9998)">
<tspan x="0" y="0" class="st16 st17 st18">菊树</tspan>
<tspan x="1.1" y="7" class="st1 st19 st20">Jushu</tspan>
</text>
<text id="n_226" transform="translate(591 1160.0001)">
<tspan x="0" y="0" class="st16 st17 st18">鹤洞</tspan>
<tspan x="-1.3" y="7" class="st1 st19 st20">Hedong</tspan>
</text>
<text id="n_227" transform="translate(641.0002 1159.9999)">
<tspan x="0" y="0" class="st16 st17 st18">沙涌</tspan>
<tspan x="-4.7" y="7" class="st1 st19 st20">Shachong</tspan>
</text>
<text id="n_228" transform="translate(729.9998 1227.5)">
<tspan x="0" y="0" class="st16 st17 st18">燕岗</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Yangang</tspan>
</text>
<text id="n_229" transform="translate(778.4998 1272.5001)">
<tspan x="0" y="0" class="st16 st17 st18">石溪</tspan>
<tspan x="2.4" y="7" class="st1 st19 st20">Shixi</tspan>
</text>
</g>
<g id="Line21">
<path d="M1200 1000v-93.8c0-4 1.6-7.8 4.4-10.6l28.7-28.7c2.8-2.8 6.6-4.4 10.6-4.4h56.3V790c0-8.3 6.7-15 15-15h270c8.3 0 15-6.7 15-15V481.2c0-4 1.6-7.8 4.4-10.6L1625 450h352.5"
style="fill:none;stroke:#1f1e44;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"/>
<text id="n_192" transform="translate(1207.4998 925.0002)">
<tspan x="0" y="0" class="st16 st17 st18">天河公园</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Tianhe Park</tspan>
</text>
<text id="n_193" transform="translate(1241.0002 847.4998)">
<tspan x="0" y="0" class="st16 st17 st18">棠东</tspan>
<tspan x="-4.6" y="7" class="st1 st19 st20">Tangdong</tspan>
</text>
<text id="n_194" transform="translate(1307.4998 812.4996)">
<tspan x="0" y="0" class="st16 st17 st18">大观南路</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Daguan Nanlu</tspan>
</text>
<text id="n_195" transform="translate(1302.4995 760.0002)">
<tspan x="0" y="0" class="st16 st17 st18">天河智慧城</tspan>
<tspan x="-2.6" y="7" class="st1 st19 st20">Tianhe Smart City</tspan>
</text>
<text id="n_196" transform="translate(1424.0005 760)">
<tspan x="0" y="0" class="st16 st17 st18">神舟路</tspan>
<tspan x="-2.8" y="7" class="st1 st19 st20">Shenzhou Lu</tspan>
</text>
<text id="n_197" transform="translate(1536.5005 759.9998)">
<tspan x="0" y="0" class="st16 st17 st18">科学城</tspan>
<tspan x="-3.7" y="7" class="st1 st19 st20">Science City</tspan>
</text>
<text id="n_198" transform="translate(1607.5002 650.0002)">
<tspan x="0" y="0" class="st16 st17 st18">水西</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Shuixi</tspan>
</text>
<text id="n_199" transform="translate(1607.4998 599.9996)">
<tspan x="0" y="0" class="st16 st17 st18">长平</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Changping</tspan>
</text>
<text id="n_200" transform="translate(1607.5002 550.0002)">
<tspan x="0" y="0" class="st16 st17 st18">金坑</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Jinkeng</tspan>
</text>
<text id="n_201" transform="translate(1607.5 500)">
<tspan x="0" y="0" class="st16 st17 st18">镇龙西</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Zhenlongxi</tspan>
</text>
<text id="n_202" transform="translate(1666.0004 435.0001)">
<tspan x="0" y="0" class="st16 st17 st18">中新</tspan>
<tspan x="-3.7" y="7" class="st1 st19 st20">Zhongxin</tspan>
</text>
<text id="n_203" transform="translate(1716.0005 435)">
<tspan x="0" y="0" class="st16 st17 st18">坑贝</tspan>
<tspan x="-2" y="7" class="st1 st19 st20">Kengbei</tspan>
</text>
<text id="n_204" transform="translate(1766.0004 435)">
<tspan x="0" y="0" class="st16 st17 st18">凤岗</tspan>
<tspan x="-4.6" y="7" class="st1 st19 st20">Fenggang</tspan>
</text>
<text id="n_205" transform="translate(1815.9998 435)">
<tspan x="0" y="0" class="st16 st17 st18">朱村</tspan>
<tspan x="-1.3" y="7" class="st1 st19 st20">Zhucun</tspan>
</text>
<text id="n_206" transform="translate(1866.0002 434.7733)">
<tspan x="0" y="0" class="st16 st17 st18">山田</tspan>
<tspan x="-3.3" y="7" class="st1 st19 st20">Shantian</tspan>
</text>
<text id="n_207" transform="translate(1918.5005 434.9998)">
<tspan x="0" y="0" class="st16 st17 st18">钟岗</tspan>
<tspan x="-6.4" y="7" class="st1 st19 st20">Zhonggang</tspan>
</text>
<text id="n_208" transform="translate(1959.5005 435.0001)">
<tspan x="0" y="0" class="st16 st17 st18">增城广场</tspan>
<tspan x="-8" y="7" class="st1 st19 st20">Zengcheng Square</tspan>
</text>
</g>
<g id="Line_14">
<path d="M925 425l100-100 162.5-162.5L1200 150l91.2-91.2c5.7-5.7 13.3-8.8 21.3-8.8H1425"
class="st22"/>
<path d="M1187.5 162.5H1325c8 0 15.7 3.2 21.3 8.8L1625 450" class="st22"/>
<g id="Names_9_">
<text id="n_171" transform="translate(967.4999 400)">
<tspan x="0" y="0" class="st16 st17 st18">白云东平</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Baiyun Dongping</tspan>
</text>
<text id="n_172" transform="translate(1005.0001 359.9998)">
<tspan x="0" y="0" class="st16 st17 st18">夏良</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Xialiang</tspan>
</text>
<text id="n_173" transform="translate(1042.5001 324.9999)">
<tspan x="0" y="0" class="st16 st17 st18">太和</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Taihe</tspan>
</text>
<text id="n_174" transform="translate(1080.0001 287.5001)">
<tspan x="0" y="0" class="st16 st17 st18">竹料</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Zhuliao</tspan>
</text>
<text id="n_175" transform="translate(1117.4998 249.9999)">
<tspan x="0" y="0" class="st16 st17 st18">钟落潭</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Zhongluotan</tspan>
</text>
<text id="n_176" transform="translate(1154.9995 209.9998)">
<tspan x="0" y="0" class="st16 st17 st18">马沥</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Mali</tspan>
</text>
<text id="n_177" transform="translate(1162.0001 152.5)">
<tspan x="0" y="0" class="st16 st17 st18">新和</tspan>
<tspan x="2.6" y="7" class="st1 st19 st20">Xinhe</tspan>
</text>
<text id="n_178" transform="translate(1229.9995 135.0002)">
<tspan x="0" y="0" class="st16 st17 st18">太平</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Taiping</tspan>
</text>
<text id="n_179" transform="translate(1267.5 97.4998)">
<tspan x="0" y="0" class="st16 st17 st18">神岗</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Shengang</tspan>
</text>
<text id="n_180" transform="translate(1316 64.9999)">
<tspan x="0" y="0" class="st16 st17 st18">赤草</tspan>
<tspan x="-.2" y="7" class="st1 st19 st20">Chicao</tspan>
</text>
<text id="n_181" transform="translate(1352.5002 35)">
<tspan x="0" y="0" class="st16 st17 st18">从化客运站</tspan>
<tspan x="-12" y="7" class="st1 st19 st20">Conghua Coach Terminal</tspan>
</text>
<text id="n_182" transform="translate(1415.9999 65.0002)">
<tspan x="0" y="0" class="st16 st17 st18">东风</tspan>
<tspan x="-4.3" y="7" class="st1 st19 st20">Dongfeng</tspan>
</text>
<text id="n_183" transform="translate(1241.0001 177.4998)">
<tspan x="0" y="0" class="st16 st17 st18">红卫</tspan>
<tspan x="-3.2" y="7" class="st1 st19 st20">Hongwei</tspan>
</text>
<text id="n_184" transform="translate(1291.0001 147.4998)">
<tspan x="0" y="0" class="st16 st17 st18">新南</tspan>
<tspan x="-.4" y="7" class="st1 st19 st20">Xinnan</tspan>
</text>
<text id="n_185" transform="translate(1355.0002 164.9998)">
<tspan x="0" y="0" class="st16 st17 st18">枫下</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Fengxia</tspan>
</text>
<text id="n_186" transform="translate(1392.5 195.0001)">
<tspan x="0" y="0" class="st16 st17 st18">知识城</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Sino-Singapore</tspan>
<tspan x="0" y="14" class="st1 st19 st20">Guangzhou Knowledge City</tspan>
</text>
<text id="n_187" transform="translate(1429.9998 240.0001)">
<tspan x="0" y="0" class="st16 st17 st18">何棠下</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Hetangxia</tspan>
</text>
<text id="n_188" transform="translate(1480.0002 289.9998)">
<tspan x="0" y="0" class="st16 st17 st18">旺村</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Wangcun</tspan>
</text>
<text id="n_189" transform="translate(1530.0002 340.0001)">
<tspan x="0" y="0" class="st16 st17 st18">汤村</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Tangcun</tspan>
</text>
<text id="n_190" transform="translate(1580 389.9999)">
<tspan x="0" y="0" class="st16 st17 st18">镇龙北</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Zhenlongbei</tspan>
</text>
<text id="n_191" transform="translate(1589.5005 450.0001)">
<tspan x="0" y="0" class="st16 st17 st18">镇龙</tspan>
<tspan x="-7.7" y="7" class="st1 st19 st20">Zhenlong</tspan>
</text>
</g>
</g>
<g id="Line_13">
<path d="M1450 1000v37.5c0 6.9 5.6 12.5 12.5 12.5h257.3c3.3 0 6.5-1.3 8.8-3.7l67.7-67.7c2.3-2.3 5.5-3.7 8.8-3.7h132.3"
style="fill:none;stroke:#88822b;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"/>
<text id="n_161" transform="translate(1486.5005 1065)">
<tspan x="0" y="0" class="st16 st17 st18">裕丰围</tspan>
<tspan x="-1.8" y="7" class="st1 st19 st20">Yufengwei</tspan>
</text>
<text id="n_162" transform="translate(1541.0005 1035)">
<tspan x="0" y="0" class="st16 st17 st18">双岗</tspan>
<tspan x="-8.2" y="7" class="st1 st19 st20">Shuanggang</tspan>
</text>
<text id="n_163" transform="translate(1582.0005 1065.0004)">
<tspan x="0" y="0" class="st16 st17 st18">南海神庙</tspan>
<tspan x="-8.6" y="7" class="st1 st19 st20">Nanhai God Temple</tspan>
</text>
<text id="n_164" transform="translate(1640.9998 1035)">
<tspan x="0" y="0" class="st16 st17 st18">夏园</tspan>
<tspan x="-2.1" y="7" class="st1 st19 st20">Xiayuan</tspan>
</text>
<text id="n_165" transform="translate(1690.9998 1065.0005)">
<tspan x="0" y="0" class="st16 st17 st18">南岗</tspan>
<tspan x="-3.1" y="7" class="st1 st19 st20">Nangang</tspan>
</text>
<text id="n_166" transform="translate(1754.9996 1037.5005)">
<tspan x="0" y="0" class="st16 st17 st18">沙村</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Shacun</tspan>
</text>
<text id="n_167" transform="translate(1764.4998 974.9997)">
<tspan x="0" y="0" class="st16 st17 st18">白江</tspan>
<tspan x="-3.6" y="7" class="st1 st19 st20">Baijiang</tspan>
</text>
<text id="n_168" transform="translate(1828.5 960.0005)">
<tspan x="0" y="0" class="st16 st17 st18">新塘</tspan>
<tspan x="-1.7" y="7" class="st1 st19 st20">Xintang</tspan>
</text>
<text id="n_169" transform="translate(1878.5002 960.0002)">
<tspan x="0" y="0" class="st16 st17 st18">官湖</tspan>
<tspan x="-1.4" y="7" class="st1 st19 st20">Guanhu</tspan>
</text>
<text id="n_170" transform="translate(1928.5005 960)">
<tspan x="0" y="0" class="st16 st17 st18">新沙</tspan>
<tspan x="-.4" y="7" class="st1 st19 st20">Xinsha</tspan>
</text>
</g>
<g id="Line_9">
<path d="M925 275H425" style="fill:none;stroke:#6db98d;stroke-width:5;stroke-miterlimit:10"/>
<g id="Names_8_">
<text id="n_160" transform="translate(865.9996 289.9998)">
<tspan x="0" y="0" class="st16 st17 st18">清塘</tspan>
<tspan x="-3.3" y="7" class="st1 st19 st20">Qingtang</tspan>
</text>
<text id="n_159" transform="translate(816.0002 260.0002)">
<tspan x="0" y="0" class="st16 st17 st18">清㘵</tspan>
<tspan x="-.3" y="7" class="st1 st19 st20">Qingbu</tspan>
</text>
<text id="n_158" transform="translate(765.9999 289.9998)">
<tspan x="0" y="0" class="st16 st17 st18">莲塘</tspan>
<tspan x="-3.2" y="7" class="st1 st19 st20">Liantang</tspan>
</text>
<text id="n_157" transform="translate(702.4998 259.9999)">
<tspan x="0" y="0" class="st16 st17 st18">马鞍山公园</tspan>
<tspan x=".2" y="7" class="st1 st19 st20">Ma’anshan Park</tspan>
</text>
<text id="n_156" transform="translate(657.0001 289.9998)">
<tspan x="0" y="0" class="st16 st17 st18">花都广场</tspan>
<tspan x="-1.3" y="7" class="st1 st19 st20">Huadu Square</tspan>
</text>
<text id="n_155" transform="translate(602.5001 260.0001)">
<tspan x="0" y="0" class="st16 st17 st18">花果山公园</tspan>
<tspan x="-1.8" y="7" class="st1 st19 st20">Huaguoshan Park</tspan>
</text>
<text id="n_154" transform="translate(561.4999 289.9999)">
<tspan x="0" y="0" class="st16 st17 st18">花城路</tspan>
<tspan x="-2.8" y="7" class="st1 st19 st20">Huacheng Lu</tspan>
</text>
<text id="n_153" transform="translate(507.0003 259.9999)">
<tspan x="0" y="0" class="st16 st17 st18">广州北站</tspan>
<tspan x="-29.1" y="7" class="st1 st19 st20">Guangzhou North Railway Station</tspan>
</text>
<text id="n_152" transform="translate(452.4999 290.0001)">
<tspan x="0" y="0" class="st16 st17 st18">花都汽车城</tspan>
<tspan x="1" y="7" class="st1 st19 st20">Huadu Autocity</tspan>
</text>
<text id="n_151" transform="translate(390.5001 275.0001)">
<tspan x="0" y="0" class="st16 st17 st18">飞鹅岭</tspan>
<tspan x="3.9" y="7" class="st1 st19 st20">Fei’eling</tspan>
</text>
</g>
</g>
<g id="Line_8">
<path d="M700 1000V500v-37.5-.1c0-7.9-3.1-15.5-8.8-21.1L600 350.1M1300 1100h-12.5c-8 0-15.7 3.2-21.3 8.8l-44.8 44.8c-5.7 5.7-13.3 8.8-21.3 8.8H880.2c-3.3 0-6.5 1.3-8.8 3.7l-5.2 5.2c-2.3 2.3-5.5 3.7-8.8 3.7H700v-175"
class="st25"/>
<g id="Names_7_">
<text id="n_237" transform="translate(576.9998 349.9999)">
<tspan x="0" y="0" class="st16 st17 st18">滘心</tspan>
<tspan x="-.5" y="7" class="st1 st19 st20">Jiaoxin</tspan>
</text>
<text id="n_238" transform="translate(614.5 400)">
<tspan x="0" y="0" class="st16 st17 st18">亭岗</tspan>
<tspan x="-7.2" y="7" class="st1 st19 st20">Tinggang</tspan>
</text>
<text id="n_239" transform="translate(651.9999 437.4996)">
<tspan x="0" y="0" class="st16 st17 st18">石井</tspan>
<tspan x="-.2" y="7" class="st1 st19 st20">Shijing</tspan>
</text>
<text id="n_240" transform="translate(707.5001 474.9996)">
<tspan x="0" y="0" class="st16 st17 st18">小坪</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Xiaoping</tspan>
</text>
<text id="n_241" transform="translate(707.4999 525.0005)">
<tspan x="0" y="0" class="st16 st17 st18">石潭</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Shitan</tspan>
</text>
<text id="n_242" transform="translate(707.5 574.9998)">
<tspan x="0" y="0" class="st16 st17 st18">聚龙</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Julong</tspan>
</text>
<text id="n_243" transform="translate(707.4999 624.9999)">
<tspan x="0" y="0" class="st16 st17 st18">上㘵</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Shangbu</tspan>
</text>
<text id="n_244" transform="translate(707.4999 674.9999)">
<tspan x="0" y="0" class="st16 st17 st18">同德</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Tongde</tspan>
</text>
<text id="n_245" transform="translate(707.5001 724.9996)">
<tspan x="0" y="0" class="st16 st17 st18">鹅掌坦</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Ezhangtan</tspan>
</text>
<text id="n_246" transform="translate(707.5001 850.0001)">
<tspan x="0" y="0" class="st16 st17 st18">彩虹桥</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Caihongqiao</tspan>
</text>
<text id="n_247" transform="translate(707.4998 964.9999)">
<tspan x="0" y="0" class="st16 st17 st18">华林寺</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Hualin Buddhist Temple</tspan>
</text>
<text id="n_140" transform="translate(665.4999 1074.9996)">
<tspan x="0" y="0" class="st16 st17 st18">同福西</tspan>
<tspan x="2.5" y="7" class="st1 st19 st20">Tongfuxi</tspan>
</text>
<text id="n_141" transform="translate(656.5 1125.0004)">
<tspan x="0" y="0" class="st16 st17 st18">凤凰新村</tspan>
<tspan x="-14.8" y="7" class="st1 st19 st20">Fenghuang Xincun</tspan>
</text>
<text id="n_142" transform="translate(674.5001 1162.4996)">
<tspan x="0" y="0" class="st16 st17 st18">沙园</tspan>
<tspan x="-6.1" y="7" class="st1 st19 st20">Shayuan</tspan>
</text>
<text id="n_143" transform="translate(732.0003 1190.0001)">
<tspan x="0" y="0" class="st16 st17 st18">宝岗大道</tspan>
<tspan x="-3.5" y="7" class="st1 st19 st20">Baogang Dadao</tspan>
</text>
<text id="n_144" transform="translate(875.0004 1177.5001)">
<tspan x="0" y="0" class="st16 st17 st18">晓港</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Xiaogang</tspan>
</text>
<text id="n_145" transform="translate(928.5005 1147.5001)">
<tspan x="0" y="0" class="st16 st17 st18">中大</tspan>
<tspan x="-23.5" y="7" class="st1 st19 st20">Sun Yat-sen University</tspan>
</text>
<text id="n_146" transform="translate(978.5002 1177.5005)">
<tspan x="0" y="0" class="st16 st17 st18">鹭江</tspan>
<tspan x="-1" y="7" class="st1 st19 st20">Lujiang</tspan>
</text>
<text id="n_147" transform="translate(1091.0002 1177.5005)">
<tspan x="0" y="0" class="st16 st17 st18">赤岗</tspan>
<tspan x="-2" y="7" class="st1 st19 st20">Chigang</tspan>
</text>
<text id="n_148" transform="translate(1136.5005 1177.5)">
<tspan x="0" y="0" class="st16 st17 st18">磨碟沙</tspan>
<tspan x=".2" y="7" class="st1 st19 st20">Modiesha</tspan>
</text>
<text id="n_149" transform="translate(1186.5004 1177.4996)">
<tspan x="0" y="0" class="st16 st17 st18">新港东</tspan>
<tspan x="-4.4" y="7" class="st1 st19 st20">Xingangdong</tspan>
</text>
<text id="n_150" transform="translate(1267.5005 1124.9995)">
<tspan x="0" y="0" class="st16 st17 st18">琶洲</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Pazhou</tspan>
</text>
</g>
</g>
<g id="LIne_7">
<path d="M817.5 1515l50-50 15-15 8.5-8.5c3.4-3.4 8-5.3 12.8-5.3H1075c4.8 0 9.4-1.9 12.8-5.3l175.2-175.6c3.4-3.4 8-5.3 12.8-5.3h24.2"
style="fill:none;stroke:#8ebc31;stroke-width:5;stroke-miterlimit:10"/>
<g id="Names_5_">
<text id="n_135" transform="translate(916.0001 1422.5004)">
<tspan x="0" y="0" class="st16 st17 st18">谢村</tspan>
<tspan x="-.4" y="7" class="st1 st19 st20">Xiecun</tspan>
</text>
<text id="n_136" transform="translate(978.5002 1422.5)">
<tspan x="0" y="0" class="st16 st17 st18">钟村</tspan>
<tspan x="-4.6" y="7" class="st1 st19 st20">Zhongcun</tspan>
</text>
<text id="n_137" transform="translate(1125 1410.0002)">
<tspan x="0" y="0" class="st16 st17 st18">南村万博</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Nancun Wanbo</tspan>
</text>
<text id="n_138" transform="translate(1175.0001 1360)">
<tspan x="0" y="0" class="st16 st17 st18">员岗</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Yuangang</tspan>
</text>
<text id="n_139" transform="translate(1224.9996 1309.9999)">
<tspan x="0" y="0" class="st16 st17 st18">板桥</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Banqiao</tspan>
</text>
</g>
</g>
<g id="Line_6">
<path d="M1700 700H962.5c-6.9 0-12.5 5.6-12.5 12.5v275c0 6.9-5.6 12.5-12.5 12.5H630.2c-3.3 0-6.5-1.3-8.8-3.7l-8.8-8.8-100-100-33.8-33.8c-2.3-2.3-3.7-5.5-3.7-8.8v-89.6c0-3.3-1.3-6.5-3.7-8.8l-58.8-58.8"
class="st27"/>
<g id="Names_4_">
<text id="n_110" transform="translate(377.9998 687.4996)">
<tspan x="0" y="0" class="st16 st17 st18">浔峰岗</tspan>
<tspan x="-10.1" y="7" class="st1 st19 st20">Xunfenggang</tspan>
</text>
<text id="n_111" transform="translate(424.5002 735.0002)">
<tspan x="0" y="0" class="st16 st17 st18">横沙</tspan>
<tspan x="-6.1" y="7" class="st1 st19 st20">Hengsha</tspan>
</text>
<text id="n_112" transform="translate(449.4998 774.9995)">
<tspan x="0" y="0" class="st16 st17 st18">沙贝</tspan>
<tspan x="-.6" y="7" class="st1 st19 st20">Shabei</tspan>
</text>
<text id="n_113" transform="translate(449.5001 824.9998)">
<tspan x="0" y="0" class="st16 st17 st18">河沙</tspan>
<tspan x=".7" y="7" class="st1 st19 st20">Hesha</tspan>
</text>
<text id="n_114" transform="translate(530.4999 947.5001)">
<tspan x="0" y="0" class="st16 st17 st18">如意坊</tspan>
<tspan x="2.3" y="7" class="st1 st19 st20">Ruyifang</tspan>
</text>
<text id="n_115" transform="translate(656.5005 1014.9997)">
<tspan x="0" y="0" class="st16 st17 st18">文化公园</tspan>
<tspan x="-.5" y="7" class="st1 st19 st20">Cultural Park</tspan>
</text>
<text id="n_116" transform="translate(736.5002 1015.0001)">
<tspan x="0" y="0" class="st16 st17 st18">一德路</tspan>
<tspan x="3.3" y="7" class="st1 st19 st20">Yide Lu</tspan>
</text>
<text id="n_117" transform="translate(836.4997 985.0004)">
<tspan x="0" y="0" class="st16 st17 st18">北京路</tspan>
<tspan x=".2" y="7" class="st1 st19 st20">Beijing Lu</tspan>
</text>
<text id="n_118" transform="translate(877.5001 984.9998)">
<tspan x="0" y="0" class="st16 st17 st18">团一大广场</tspan>
<tspan x="-.7" y="7" class="st1 st19 st20">Tuanyida Square</tspan>
</text>
<text id="n_119" transform="translate(957.5004 974.9998)">
<tspan x="0" y="0" class="st16 st17 st18">东湖</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Donghu</tspan>
</text>
<text id="n_120" transform="translate(957.5001 799.9998)">
<tspan x="0" y="0" class="st16 st17 st18">黄花岗</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Huanghuagang</tspan>
</text>
<text id="n_121" transform="translate(915.5001 749.9998)">
<tspan x="0" y="0" class="st16 st17 st18">沙河顶</tspan>
<tspan x="-1.8" y="7" class="st1 st19 st20">Shaheding</tspan>
</text>
<text id="n_122" transform="translate(965.9997 684.9998)">
<tspan x="0" y="0" class="st16 st17 st18">沙河</tspan>
<tspan x=".4" y="7" class="st1 st19 st20">Shahe</tspan>
</text>
<text id="n_123" transform="translate(999.0004 685.0002)">
<tspan x="0" y="0" class="st16 st17 st18">天平架</tspan>
<tspan x="-1.3" y="7" class="st1 st19 st20">Tianpingjia</tspan>
</text>
<text id="n_124" transform="translate(1190.9999 714.9996)">
<tspan x="0" y="0" class="st16 st17 st18">长湴</tspan>
<tspan x="-4.7" y="7" class="st1 st19 st20">Changban</tspan>
</text>
<text id="n_125" transform="translate(1236.5 684.9996)">
<tspan x="0" y="0" class="st16 st17 st18">植物园</tspan>
<tspan x="-10.3" y="7" class="st1 st19 st20">Botanical Garden</tspan>
</text>
<text id="n_126" transform="translate(1291.0004 714.9996)">
<tspan x="0" y="0" class="st16 st17 st18">龙洞</tspan>
<tspan x="-4.6" y="7" class="st1 st19 st20">Longdong</tspan>
</text>
<text id="n_127" transform="translate(1336.4999 684.9999)">
<tspan x="0" y="0" class="st16 st17 st18">柯木塱</tspan>
<tspan x="-.5" y="7" class="st1 st19 st20">Kemulang</tspan>
</text>
<text id="n_128" transform="translate(1386.5002 715.0003)">
<tspan x="0" y="0" class="st16 st17 st18">高塘石</tspan>
<tspan x="-2.2" y="7" class="st1 st19 st20">Gaotangshi</tspan>
</text>
<text id="n_129" transform="translate(1441.0002 685.0003)">
<tspan x="0" y="0" class="st16 st17 st18">黄陂</tspan>
<tspan x="-3.7" y="7" class="st1 st19 st20">Huangbei</tspan>
</text>
<text id="n_130" transform="translate(1491.0001 715.0003)">
<tspan x="0" y="0" class="st16 st17 st18">金峰</tspan>
<tspan x="-.8" y="7" class="st1 st19 st20">Jinfeng</tspan>
</text>
<text id="n_131" transform="translate(1540.9999 685.0001)">
<tspan x="0" y="0" class="st16 st17 st18">暹岗</tspan>
<tspan x="-3.8" y="7" class="st1 st19 st20">Xiangang</tspan>
</text>
<text id="n_132" transform="translate(1604.9996 715.0001)">
<tspan x="0" y="0" class="st16 st17 st18">苏元</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Suyuan</tspan>
</text>
<text id="n_133" transform="translate(1640.9999 685.0004)">
<tspan x="0" y="0" class="st16 st17 st18">萝岗</tspan>
<tspan x="-2.9" y="7" class="st1 st19 st20">Luogang</tspan>
</text>
<text id="n_134" transform="translate(1707.5004 700)">
<tspan x="0" y="0" class="st16 st17 st18">香雪</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Xiangxue</tspan>
</text>
<text id="n110_1_" transform="translate(157.4999 699.9998)">
<tspan x="0" y="0" class="st16 st17 st18">一般站点</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Common Station</tspan>
</text>
<text id="n110_2_" transform="translate(157.5002 674.9999)">
<tspan x="0" y="0" class="st16 st17 st18">换乘站</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Interchange</tspan>
</text>
<text id="n110_3_" transform="translate(157.5 649.9999)">
<tspan x="0" y="0" class="st16 st17 st18">建设中</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Under Construction</tspan>
</text>
</g>
<path d="M125 675v-50M125 725v-50" class="st25"/>
<path d="M150 675h-50" class="st27"/>
<use id="i115_1_" width="11.2" height="8" x="-5.6" y="-4" transform="matrix(1 0 0 -1 125.0001 675)"
xlink:href="#Interchange" style="overflow:visible"/>
<use id="i140_2_" width="5" height="5" x="-2.5" y="-2.5" transform="matrix(1 0 0 -1 125.0001 700)"
xlink:href="#Line8" style="overflow:visible"/>
<use id="i247_1_" width="5" height="5" x="-2.5" y="-2.5" transform="matrix(1 0 0 -1 125 650)"
xlink:href="#Line8" style="overflow:visible"/>
<text class="st28" transform="translate(86.1501 650.0004)">
<tspan x="0" y="0" class="st16 st17 st20">在建 未开通</tspan>
<tspan x="-5.7" y="5" class="st1 st29 st30">Under Construction</tspan>
</text>
</g>
<g id="Line_5">
<path d="M475 925l146.3-146.3c2.3-2.3 5.5-3.7 8.8-3.7h227.2c3.3 0 6.5 1.3 8.8 3.7l67.7 67.7c2.3 2.3 5.5 3.7 8.8 3.7h44.8c6.9 0 12.5 5.6 12.5 12.5v125c0 6.9 5.6 12.5 12.5 12.5h587.5"
class="st31"/>
<g id="Names_3_">
<text id="n_90" transform="translate(449.4999 925)">
<tspan x="0" y="0" class="st16 st17 st18">文冲</tspan>
<tspan x="-12" y="7" class="st1 st19 st20">Wenchong</tspan>
</text>
<text id="n_91" transform="translate(479.5001 890.0002)">
<tspan x="0" y="0" class="st16 st17 st18">坦尾</tspan>
<tspan x="-2.7" y="7" class="st1 st19 st20">Tanwei</tspan>
</text>
<text id="n_92" transform="translate(530.5002 827.4999)">
<tspan x="0" y="0" class="st16 st17 st18">中山八</tspan>
<tspan x="-10.6" y="7" class="st1 st19 st20">Zhongshanba</tspan>
</text>
<text id="n_93" transform="translate(589.5 777.5005)">
<tspan x="0" y="0" class="st16 st17 st18">西场</tspan>
<tspan x="-4.1" y="7" class="st1 st19 st20">Xichang</tspan>
</text>
<text id="n_94" transform="translate(674.4998 759.9999)">
<tspan x="0" y="0" class="st16 st17 st18">西村</tspan>
<tspan x="2.7" y="7" class="st1 st19 st20">Xicun</tspan>
</text>
<text id="n_95" transform="translate(877.0002 822.5005)">
<tspan x="0" y="0" class="st16 st17 st18">淘金</tspan>
<tspan x="1.4" y="7" class="st1 st19 st20">Taojin</tspan>
</text>
<text id="n_96" transform="translate(840.9996 760.0004)">
<tspan x="0" y="0" class="st16 st17 st18">小北</tspan>
<tspan x="-1.1" y="7" class="st1 st19 st20">Xiaobei</tspan>
</text>
<text id="n_97" transform="translate(954.9996 835.0001)">
<tspan x="0" y="0" class="st16 st17 st18">区庄</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Ouzhuang</tspan>
</text>
<text id="n_98" transform="translate(965.5004 877.5001)">
<tspan x="0" y="0" class="st16 st17 st18">动物园</tspan>
<tspan x="16.6" y="7" class="st1 st19 st20">Zoo</tspan>
</text>
<text id="n_99" transform="translate(1007.5 977.4996)">
<tspan x="0" y="0" class="st16 st17 st18">五羊邨</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Wuyangcun</tspan>
</text>
<text id="n_100" transform="translate(1103.5004 1015.0004)">
<tspan x="0" y="0" class="st16 st17 st18">猎德</tspan>
<tspan x="1.6" y="7" class="st1 st19 st20">Liede</tspan>
</text>
<text id="n_101" transform="translate(1140.9996 1015.0003)">
<tspan x="0" y="0" class="st16 st17 st18">潭村</tspan>
<tspan x="-1.2" y="7" class="st1 st19 st20">Tancun</tspan>
</text>
<text id="n_102" transform="translate(1190.9996 1015.0003)">
<tspan x="0" y="0" class="st16 st17 st18">员村</tspan>
<tspan x="-3.1" y="7" class="st1 st19 st20">Yuancun</tspan>
</text>
<text id="n_103" transform="translate(1236.5004 1015.0004)">
<tspan x="0" y="0" class="st16 st17 st18">科韵路</tspan>
<tspan x=".7" y="7" class="st1 st19 st20">Keyun Lu</tspan>
</text>
<text id="n_104" transform="translate(1341.0005 985.0001)">
<tspan x="0" y="0" class="st16 st17 st18">东圃</tspan>
<tspan x="-1.3" y="7" class="st1 st19 st20">Dongpu</tspan>
</text>
<text id="n_105" transform="translate(1390.9998 1015.0002)">
<tspan x="0" y="0" class="st16 st17 st18">三溪</tspan>
<tspan x="1.3" y="7" class="st1 st19 st20">Sanxi</tspan>
</text>
<text id="n_106" transform="translate(1440.9996 985.0001)">
<tspan x="0" y="0" class="st16 st17 st18">鱼珠</tspan>
<tspan x=".3" y="7" class="st1 st19 st20">Yuzhu</tspan>
</text>
<text id="n_107" transform="translate(1486.4999 1014.9999)">
<tspan x="0" y="0" class="st16 st17 st18">大沙地</tspan>
<tspan x="2.5" y="7" class="st1 st19 st20">Dashadi</tspan>
</text>
<text id="n_108" transform="translate(1536.4999 984.9999)">
<tspan x="0" y="0" class="st16 st17 st18">大沙东</tspan>
<tspan x="-2" y="7" class="st1 st19 st20">Dashadong</tspan>
</text>
<text id="n_109" transform="translate(1607.5005 1000.0004)">
<tspan x="0" y="0" class="st16 st17 st18">文冲</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Wenchong</tspan>
</text>
</g>
</g>
<g id="Line_4">
<path d="M1300 862.5v700c0 8 3.2 15.7 8.8 21.3l91.2 91.2 53.7 53.7c5.7 5.7 13.3 8.8 21.3 8.8h312.5"
style="fill:none;stroke:#157a3b;stroke-width:5;stroke-miterlimit:10"/>
<g id="Names_6_">
<text id="n_66" transform="translate(1794.9998 1737.5)">
<tspan x="0" y="0" class="st16 st17 st18">南沙客运港</tspan>
<tspan x="0" y="7" class="st1 st19 st20">Nansha Passenger Port</tspan>
</text>