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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333
| { "status": "1", "info": "OK", "infocode": "10000", "route": { "origin": "113.921381,22.540097", "destination": "114.142144,22.548620", "distance": "21437", "transits": [ { "distance": "25813", "walking_distance": "685", "nightflag": "0", "segments": [ { "walking": { "destination": "113.919914,22.537916", "distance": "347", "origin": "113.921379,22.540096", "steps": [ { "instruction": "沿深南大道步行67米向左前方行走", "road": "深南大道", "distance": "67", "polyline": { "polyline": "113.921379,22.540096;113.921272,22.540100;113.921104,22.540113;113.920731,22.540155" } }, { "instruction": "沿深南大道步行46米向左前方行走", "road": "深南大道", "distance": "46", "polyline": { "polyline": "113.920731,22.540155;113.920563,22.540077;113.920502,22.540052;113.920441,22.540005;113.920372,22.539913" } }, { "instruction": "沿南新路步行168米向右前方行走", "road": "南新路", "distance": "168", "polyline": { "polyline": "113.920372,22.539909;113.920227,22.539076;113.920105,22.538416" } }, { "instruction": "沿南头红花路步行10米左转", "road": "南头红花路", "distance": "10", "polyline": { "polyline": "113.920105,22.538412;113.920006,22.538416" } }, { "instruction": "沿南新路步行56米到达南新深南天桥1", "road": "南新路", "distance": "56", "polyline": { "polyline": "113.920006,22.538416;113.919914,22.537916" } } ] }, "bus": { "buslines": [ { "departure_stop": { "name": "南新深南天桥1", "id": "440300014408066", "location": "113.919913,22.537917" }, "arrival_stop": { "name": "黄贝岭", "id": "440300014408056", "location": "114.142540,22.548475" }, "name": "M182路(西丽官龙村总站--仙湖植物园总站)", "id": "440300014408", "type": "普通公交线路", "distance": "25128", "polyline": { "polyline": "113.919913,22.537917;113.919818,22.537400;113.919531,22.535911;113.919523,22.535859;113.919414,22.535095;113.919414,22.535091;113.919358,22.534722;113.919271,22.534097;113.919149,22.532956;113.919132,22.532834;113.919102,22.532526;113.919171,22.532405;113.919505,22.532435;113.919848,22.532457;113.919978,22.532457;113.919974,22.532457;113.920234,22.532457;113.920738,22.532435;113.921029,22.532413;113.921089,22.532413;113.921332,22.532405;113.922417,22.532360;113.922745,22.532352;113.923614,22.532320;113.923673,22.532315;113.924000,22.532309;113.924333,22.532336;113.924419,22.532283;113.924553,22.532143;113.924617,22.532025;113.924612,22.531805;113.924590,22.530963;113.924601,22.530523;113.924628,22.530260;113.924623,22.529718;113.924612,22.529606;113.924590,22.529402;113.924563,22.529187;113.924510,22.528849;113.924462,22.528597;113.924322,22.527862;113.924258,22.527508;113.924242,22.527460;113.924038,22.526638;113.923952,22.526290;113.923850,22.525781;113.923737,22.525201;113.923646,22.524767;113.923576,22.524488;113.923496,22.524161;113.923560,22.523968;113.924043,22.523839;113.924145,22.523812;113.924247,22.523791;113.924569,22.523715;113.924891,22.523635;113.925154,22.523560;113.925633,22.523443;113.926296,22.523281;113.926634,22.523206;113.926731,22.523185;113.926994,22.523125;113.927707,22.522943;113.927830,22.522905;113.927975,22.522820;113.928125,22.522745;113.928236,22.522701;113.928798,22.522467;113.929327,22.522314;113.929756,22.522234;113.930100,22.522165;113.930320,22.522128;113.930534,22.522090;113.930706,22.522090;113.930826,22.522065;113.931269,22.521972;113.931505,22.521929;113.931564,22.521913;113.932830,22.521688;113.933163,22.521661;113.933275,22.521672;113.933747,22.521586;113.934311,22.521564;113.934654,22.521554;113.935743,22.521516;113.935925,22.521441;113.936118,22.521382;113.936322,22.521323;113.936515,22.521291;113.936762,22.521253;113.937615,22.521221;113.937685,22.521216;113.938114,22.521194;113.938211,22.521200;113.938218,22.521201;113.938228,22.521202;113.938255,22.521204;113.938578,22.521226;113.938801,22.521241;113.938808,22.521242;113.938824,22.521243;113.938835,22.521244;113.939063,22.521259;113.940490,22.521162;113.941349,22.521130;113.943318,22.521087;113.943913,22.521125;113.944342,22.521194;113.945206,22.521259;113.945592,22.521328;113.946933,22.521328;113.948151,22.521312;113.948945,22.521301;113.950195,22.521243;113.950307,22.521237;113.952153,22.521033;113.956417,22.520561;113.957410,22.520448;113.958874,22.520288;113.959733,22.520143;113.960741,22.519864;113.961074,22.519751;113.961712,22.519692;113.962515,22.519625;113.962742,22.519606;113.962898,22.519563;113.963225,22.519521;113.963627,22.519478;113.965333,22.519381;113.965886,22.519392;113.966186,22.519215;113.966443,22.519177;113.966524,22.519172;113.966744,22.519183;113.967313,22.519241;113.967618,22.519295;113.967742,22.519333;113.968246,22.519531;113.972167,22.519553;113.973664,22.519563;113.976094,22.519590;113.978267,22.519601;113.979039,22.519590;113.979613,22.519510;113.980042,22.519494;113.980257,22.519488;113.980471,22.519488;113.980654,22.519488;113.981008,22.519354;113.981115,22.519301;113.981180,22.519252;113.981314,22.519113;113.981657,22.519236;113.981770,22.519338;113.981829,22.519386;113.981947,22.519435;113.982156,22.519472;113.982617,22.519472;113.983854,22.519499;113.984591,22.519515;113.985525,22.519622;113.985852,22.519681;113.986233,22.519778;113.986490,22.519842;113.986581,22.519880;113.986700,22.519950;113.987890,22.520073;113.988470,22.520164;113.989376,22.520320;113.990535,22.520577;113.991479,22.520830;113.992032,22.520990;113.992751,22.521221;113.993834,22.521634;113.994054,22.521629;113.994140,22.521634;113.994161,22.521634;113.994746,22.521725;113.994945,22.521779;113.995159,22.521854;113.995224,22.521881;113.995444,22.521972;113.995717,22.522101;113.996152,22.522326;113.997053,22.522814;113.997509,22.523072;113.998823,22.523882;113.998893,22.523925;113.999521,22.524300;113.999931,22.524540;114.000003,22.524590;114.000647,22.524992;114.000862,22.525185;114.001183,22.525475;114.001505,22.525706;114.001559,22.525749;114.001677,22.525904;114.002369,22.526215;114.003018,22.526457;114.003506,22.526618;114.003946,22.526741;114.004992,22.526966;114.005566,22.527058;114.006065,22.527106;114.006859,22.527149;114.007851,22.527133;114.008206,22.527106;114.009842,22.526929;114.011253,22.526768;114.012132,22.526693;114.013109,22.526687;114.013951,22.526730;114.014273,22.526773;114.015099,22.526896;114.016113,22.527138;114.017126,22.527379;114.018956,22.527776;114.019149,22.527814;114.021386,22.528313;114.022164,22.528501;114.022368,22.528485;114.022818,22.528474;114.024626,22.528838;114.024669,22.528844;114.025120,22.528956;114.025581,22.528951;114.025661,22.528956;114.026391,22.528973;114.026998,22.528946;114.027721,22.528865;114.027780,22.528860;114.028150,22.528790;114.028628,22.528667;114.028756,22.528635;114.029025,22.528683;114.029502,22.528533;114.029754,22.528468;114.030006,22.528409;114.030259,22.528350;114.030677,22.528238;114.030924,22.528120;114.031106,22.528050;114.032576,22.527706;114.033424,22.527513;114.034496,22.527288;114.035333,22.527170;114.035746,22.527143;114.036766,22.527090;114.037817,22.527116;114.037925,22.527114;114.038085,22.527116;114.038107,22.527116;114.038606,22.527154;114.039099,22.527197;114.040065,22.527304;114.040226,22.527326;114.040365,22.527342;114.040778,22.527385;114.041218,22.527433;114.041374,22.527455;114.041835,22.527519;114.042681,22.527607;114.043117,22.527653;114.043444,22.527691;114.043884,22.527728;114.043949,22.527733;114.044319,22.527771;114.044603,22.527798;114.045231,22.527873;114.045864,22.527948;114.046250,22.528028;114.046443,22.528098;114.046829,22.528125;114.047087,22.528152;114.047757,22.528232;114.048621,22.528323;114.049179,22.528372;114.049533,22.528388;114.050643,22.528415;114.051668,22.528420;114.051920,22.528420;114.052263,22.528431;114.052784,22.528458;114.054205,22.528501;114.054527,22.528501;114.056190,22.528517;114.056362,22.528517;114.057210,22.528538;114.057470,22.528542;114.057628,22.528543;114.057950,22.528549;114.058781,22.528603;114.059216,22.528619;114.060058,22.528624;114.060830,22.528629;114.061282,22.528629;114.061383,22.528629;114.062070,22.528597;114.062756,22.528603;114.063003,22.528613;114.063459,22.528624;114.063963,22.528635;114.064907,22.528667;114.065685,22.528683;114.066468,22.528694;114.067246,22.528710;114.067370,22.528710;114.067493,22.528710;114.067557,22.528710;114.067622,22.528710;114.067858,22.528715;114.068663,22.528731;114.069199,22.528742;114.069510,22.528742;114.069553,22.528742;114.069703,22.528742;114.069870,22.528742;114.070041,22.528742;114.071275,22.528742;114.072487,22.528769;114.073550,22.528796;114.074188,22.528812;114.075448,22.528849;114.076232,22.528892;114.076784,22.528914;114.077482,22.528924;114.078227,22.528940;114.078712,22.528943;114.080056,22.528951;114.081344,22.528978;114.081510,22.528989;114.081746,22.529016;114.081880,22.529053;114.082004,22.529075;114.082031,22.529085;114.082261,22.529198;114.082481,22.529321;114.082755,22.529531;114.082916,22.529702;114.083077,22.529933;114.083361,22.530472;114.083502,22.530738;114.083780,22.531263;114.083881,22.531478;114.084069,22.531859;114.084214,22.532105;114.084402,22.532470;114.084595,22.532781;114.084718,22.532958;114.084750,22.533001;114.084992,22.533264;114.085265,22.533554;114.085346,22.533624;114.085598,22.533849;114.085759,22.533978;114.085968,22.534101;114.086392,22.534283;114.086601,22.534337;114.087041,22.534428;114.087438,22.534466;114.087964,22.534503;114.088404,22.534471;114.088532,22.534444;114.088897,22.534471;114.089041,22.534470;114.090174,22.534482;114.090989,22.534493;114.091311,22.534497;114.091794,22.534503;114.091858,22.534509;114.092105,22.534514;114.092405,22.534589;114.092722,22.534691;114.092963,22.534707;114.093591,22.534793;114.096069,22.535308;114.096429,22.535362;114.096767,22.535388;114.097099,22.535394;114.099326,22.535340;114.100511,22.535249;114.100956,22.535228;114.101922,22.535249;114.102834,22.535270;114.103826,22.535265;114.104003,22.535270;114.104556,22.535292;114.104760,22.535330;114.105006,22.535372;114.105210,22.535383;114.107249,22.535426;114.107469,22.535431;114.108026,22.535437;114.108236,22.535426;114.108751,22.535356;114.108992,22.535303;114.109191,22.535244;114.109631,22.535040;114.110140,22.534809;114.110601,22.534568;114.110977,22.534396;114.111218,22.534321;114.111615,22.534267;114.111889,22.534289;114.112211,22.534358;114.114174,22.534863;114.114877,22.534986;114.115000,22.535002;114.116336,22.535185;114.116706,22.535238;114.117420,22.535335;114.117843,22.535405;114.118310,22.535506;114.119185,22.535737;114.119340,22.535726;114.119388,22.535732;114.119506,22.535759;114.120166,22.535995;114.120520,22.536129;114.121497,22.536493;114.121802,22.536756;114.122237,22.536917;114.122626,22.537072;114.122924,22.537191;114.123095,22.537250;114.123390,22.537368;114.123862,22.537550;114.123927,22.537572;114.124152,22.537647;114.124361,22.537770;114.124619,22.537958;114.124839,22.538178;114.125048,22.538527;114.125182,22.538746;114.125295,22.538945;114.125354,22.539052;114.125498,22.539305;114.125611,22.539508;114.125686,22.539664;114.125740,22.539760;114.125890,22.540018;114.125976,22.540152;114.126040,22.540254;114.126373,22.540764;114.126475,22.540903;114.126761,22.541354;114.126931,22.541622;114.127269,22.542191;114.127317,22.542244;114.127387,22.542282;114.127419,22.542293;114.127612,22.542308;114.128599,22.542314;114.129103,22.542335;114.129537,22.542352;114.129940,22.542368;114.130090,22.542373;114.130262,22.542373;114.130616,22.542373;114.130970,22.542378;114.131110,22.542480;114.131110,22.542630;114.131094,22.543236;114.131094,22.543343;114.131094,22.543945;114.131072,22.544728;114.131067,22.544798;114.131196,22.545018;114.131399,22.545200;114.131593,22.545232;114.131732,22.545254;114.132252,22.545350;114.132338,22.545366;114.132987,22.545479;114.133355,22.545538;114.133813,22.545613;114.134602,22.545736;114.134688,22.545753;114.136109,22.545983;114.136701,22.546076;114.137198,22.546155;114.138148,22.546337;114.138384,22.546380;114.138915,22.546461;114.139612,22.546546;114.140986,22.546702;114.141441,22.546772;114.141710,22.546761;114.141758,22.546745;114.141871,22.546691;114.141946,22.546621;114.141973,22.546563;114.141994,22.546503;114.142005,22.546445;114.141994,22.546359;114.141962,22.546262;114.141924,22.546208;114.141887,22.546171;114.141833,22.546133;114.141747,22.546090;114.141683,22.546074;114.141619,22.546074;114.141549,22.546080;114.141490,22.546096;114.141425,22.546128;114.141356,22.546182;114.141297,22.546262;114.141270,22.546316;114.141254,22.546401;114.141265,22.546498;114.141318,22.546681;114.141656,22.547196;114.141860,22.547517;114.141946,22.547635;114.142026,22.547759;114.142112,22.547871;114.142262,22.548086;114.142300,22.548140;114.142540,22.548475" }, "bus_time_tips": "", "bustimetag": "0", "start_time": "0600", "end_time": "2200", "via_num": "27", "via_stops": [ { "name": "南山欢乐颂", "id": "440300014408028", "location": "113.919414,22.535091" }, { "name": "桃园南新路口", "id": "440300014408030", "location": "113.919974,22.532457" }, { "name": "协和深圳医院", "id": "440300014408071", "location": "113.922417,22.532360" }, { "name": "协和深圳医院东", "id": "440300014408032", "location": "113.924462,22.528597" }, { "name": "南航公司", "id": "440300014408033", "location": "113.924038,22.526638" }, { "name": "荔园大厦", "id": "440300014408034", "location": "113.925633,22.523443" }, { "name": "滨海白石立交", "id": "440300014408035", "location": "113.930826,22.522065" }, { "name": "滨海之窗", "id": "440300014408077", "location": "113.938808,22.521242" }, { "name": "滨海沙河东立交", "id": "440300014408037", "location": "113.962515,22.519625" }, { "name": "滨海深湾立交", "id": "440300014408038", "location": "113.983854,22.519499" }, { "name": "红树林", "id": "440300014408039", "location": "113.999931,22.524540" }, { "name": "下沙1", "id": "440300014408085", "location": "114.026998,22.528946" }, { "name": "福田体育公园", "id": "440300014408041", "location": "114.037925,22.527114" }, { "name": "新洲村牌坊2", "id": "440300014408042", "location": "114.042681,22.527607" }, { "name": "会展中心南", "id": "440300014408043", "location": "114.057470,22.528542" }, { "name": "皇岗村北", "id": "440300014408044", "location": "114.061282,22.528629" }, { "name": "联合广场", "id": "440300014408045", "location": "114.069199,22.528742" }, { "name": "福滨新村1", "id": "440300014408067", "location": "114.078712,22.528943" }, { "name": "赤尾地铁站1", "id": "440300014408047", "location": "114.083502,22.530738" }, { "name": "滨河华强天桥", "id": "440300014408048", "location": "114.089041,22.534470" }, { "name": "上步中学2", "id": "440300014408068", "location": "114.091311,22.534497" }, { "name": "罗湖医院", "id": "440300014408050", "location": "114.122626,22.537072" }, { "name": "春风万家", "id": "440300014408069", "location": "114.126761,22.541354" }, { "name": "文锦中学", "id": "440300014408052", "location": "114.129537,22.542352" }, { "name": "文锦南路", "id": "440300014408053", "location": "114.131094,22.543343" }, { "name": "冶金大厦", "id": "440300014408054", "location": "114.133355,22.545538" }, { "name": "黄贝岭地铁站4", "id": "440300014408055", "location": "114.136701,22.546076" } ] } ] } }, { "walking": { "destination": "114.142143,22.548620", "distance": "338", "origin": "114.142540,22.548468", "steps": [ { "instruction": "沿沿河路辅路步行78米向左前方行走", "road": "沿河路辅路", "distance": "78", "polyline": { "polyline": "114.142540,22.548468;114.142303,22.548141;114.142265,22.548090;114.142113,22.547873" } }, { "instruction": "步行25米向左前方行走", "road": "", "distance": "25", "polyline": { "polyline": "114.142113,22.547869;114.142044,22.547651" } }, { "instruction": "步行136米右转", "road": "", "distance": "136", "polyline": { "polyline": "114.142036,22.547647;114.142082,22.547626;114.141960,22.547375;114.141449,22.547691;114.141594,22.547926;114.141525,22.547974" } }, { "instruction": "步行28米向左前方行走", "road": "", "distance": "28", "polyline": { "polyline": "114.141525,22.547974;114.141533,22.547991;114.141655,22.548046;114.141769,22.548077" } }, { "instruction": "沿沿河北路辅路步行25米往前走", "road": "沿河北路辅路", "distance": "25", "polyline": { "polyline": "114.141769,22.548077;114.141891,22.548273" } }, { "instruction": "沿沿河北路出口步行46米", "road": "沿河北路出口", "distance": "46", "polyline": { "polyline": "114.141891,22.548273;114.142143,22.548620" } } ] } } ] }, { "distance": "21990", "walking_distance": "378", "nightflag": "0", "segments": [ { "walking": { "destination": "113.921631,22.540087", "distance": "26", "origin": "113.921379,22.540096", "steps": [ { "instruction": "沿深南大道步行26米到达南头2", "road": "深南大道", "distance": "26", "polyline": { "polyline": "113.921379,22.540096;113.921631,22.540087" } } ] }, "bus": { "buslines": [ { "departure_stop": { "name": "南头2", "id": "440300014309050", "location": "113.921660,22.540081" }, "arrival_stop": { "name": "田面", "id": "440300014309027", "location": "114.078533,22.540247" }, "name": "320路(西乡恒生医院--深业上城总站)", "id": "440300014309", "type": "普通公交线路", "distance": "15223", "polyline": { "polyline": "113.921660,22.540081;113.921822,22.540071;113.922069,22.540066;113.922326,22.540055;113.922584,22.540045;113.923292,22.540023;113.923855,22.539996;113.923979,22.539996;113.924381,22.539991;113.924483,22.539927;113.924590,22.539889;113.925449,22.539836;113.926270,22.539803;113.926860,22.539766;113.927021,22.539754;113.927682,22.539705;113.928181,22.539666;113.928220,22.539666;113.928260,22.539661;113.928724,22.539748;113.929878,22.539701;113.930217,22.539674;113.931311,22.539618;113.932270,22.539553;113.932604,22.539531;113.932730,22.539523;113.932860,22.539514;113.933767,22.539475;113.934332,22.539462;113.935816,22.539392;113.937656,22.539362;113.938034,22.539379;113.939536,22.539436;113.940586,22.539484;113.943342,22.539618;113.943880,22.539644;113.944631,22.539674;113.945378,22.539696;113.945812,22.539618;113.947365,22.539696;113.948220,22.539731;113.948585,22.539753;113.949158,22.539787;113.949503,22.539801;113.950191,22.539839;113.950412,22.539848;113.950942,22.539878;113.951259,22.539891;113.952339,22.540022;113.952734,22.540030;113.953338,22.540052;113.953911,22.540074;113.954010,22.540074;113.954440,22.540095;113.954957,22.540109;113.955438,22.540122;113.955933,22.540139;113.956471,22.540152;113.957739,22.540195;113.958481,22.540208;113.961024,22.540256;113.961615,22.540265;113.962665,22.540286;113.963459,22.540269;113.963733,22.540247;113.964097,22.540208;113.964510,22.540156;113.964701,22.540122;113.965273,22.539991;113.965503,22.539870;113.966315,22.539570;113.966923,22.539358;113.967491,22.539154;113.967687,22.539071;113.968181,22.538867;113.968679,22.538691;113.968969,22.538588;113.969731,22.538316;113.970668,22.537917;113.972031,22.537431;113.972166,22.537387;113.972261,22.537361;113.973967,22.536753;113.974440,22.536597;113.974909,22.536428;113.975738,22.536115;113.976115,22.535972;113.976150,22.536050;113.977396,22.535603;113.977891,22.535399;113.978993,22.534891;113.979592,22.534609;113.979848,22.534492;113.979983,22.534427;113.980942,22.533976;113.981267,22.533832;113.981480,22.533741;113.982010,22.533563;113.982457,22.533468;113.982808,22.533411;113.983607,22.533364;113.986784,22.533312;113.988003,22.533286;113.988325,22.533277;113.988589,22.533268;113.990508,22.533255;113.990651,22.533255;113.990894,22.533247;113.992053,22.533229;113.992656,22.533203;113.993168,22.533125;113.993828,22.532956;113.993893,22.532943;113.994136,22.532882;113.994666,22.532756;113.995278,22.532604;113.996450,22.532296;113.997036,22.532140;113.997352,22.532079;113.998203,22.531923;113.999180,22.531819;113.999670,22.531797;114.000577,22.531810;114.001432,22.531884;114.002383,22.532036;114.002730,22.532092;114.003872,22.532270;114.004818,22.532435;114.004991,22.532470;114.005838,22.532613;114.006155,22.532661;114.007617,22.532882;114.008003,22.532956;114.008086,22.532973;114.008203,22.532995;114.008728,22.532969;114.010043,22.533186;114.010790,22.533338;114.010846,22.533346;114.011931,22.533546;114.011927,22.533546;114.013125,22.533763;114.013666,22.533843;114.014037,22.533897;114.014176,22.533913;114.014900,22.534010;114.015018,22.534031;114.015131,22.534053;114.015603,22.534128;114.016075,22.534208;114.016113,22.534214;114.016258,22.534246;114.017373,22.534450;114.017593,22.534487;114.017808,22.534525;114.018344,22.534627;114.018886,22.534718;114.019256,22.534777;114.019787,22.534873;114.020047,22.534917;114.020238,22.534950;114.020243,22.534951;114.020552,22.535003;114.021053,22.535088;114.021418,22.535185;114.021971,22.535276;114.022115,22.535303;114.023038,22.535458;114.023805,22.535587;114.024127,22.535646;114.025656,22.535914;114.026262,22.536011;114.027201,22.536000;114.027979,22.536032;114.028306,22.536059;114.028612,22.536102;114.028869,22.536156;114.029277,22.536279;114.029958,22.536542;114.030688,22.536815;114.030994,22.536855;114.031391,22.536906;114.031745,22.536955;114.032410,22.537084;114.033064,22.537175;114.033767,22.537303;114.035907,22.537668;114.036433,22.537760;114.036476,22.537765;114.036712,22.537808;114.038085,22.538033;114.040848,22.538511;114.043638,22.538988;114.043817,22.539017;114.044785,22.539176;114.045268,22.539245;114.045864,22.539294;114.046271,22.539321;114.046845,22.539481;114.047307,22.539492;114.048047,22.539503;114.048369,22.539498;114.048975,22.539530;114.050016,22.539551;114.050252,22.539556;114.050488,22.539562;114.050676,22.539567;114.051330,22.539583;114.052349,22.539621;114.052516,22.539551;114.053106,22.539551;114.053454,22.539546;114.053659,22.539553;114.054018,22.539567;114.054436,22.539648;114.055107,22.539675;114.055359,22.539675;114.055772,22.539675;114.056083,22.539675;114.056786,22.539680;114.057097,22.539669;114.057494,22.539610;114.058073,22.539508;114.058298,22.539476;114.059286,22.539326;114.059634,22.539299;114.059865,22.539310;114.060058,22.539331;114.060310,22.539374;114.060589,22.539433;114.061185,22.539600;114.061850,22.539707;114.062193,22.539787;114.062311,22.539803;114.063159,22.539852;114.064269,22.539868;114.065605,22.539889;114.068426,22.539948;114.069671,22.539970;114.069993,22.539846;114.070551,22.539857;114.070863,22.539865;114.070964,22.539868;114.071157,22.539809;114.071345,22.539755;114.071538,22.539728;114.071795,22.539744;114.072090,22.539803;114.072498,22.539916;114.073153,22.539938;114.073587,22.539948;114.073770,22.539959;114.074220,22.539980;114.074831,22.540045;114.075073,22.540088;114.075475,22.540104;114.075942,22.540109;114.076291,22.540115;114.076387,22.540115;114.076580,22.540109;114.076725,22.540152;114.076993,22.540184;114.077948,22.540227;114.078190,22.540243;114.078533,22.540247" }, "bus_time_tips": "", "bustimetag": "0", "start_time": "", "end_time": "", "via_num": "11", "via_stops": [ { "name": "荔香公园", "id": "440300014309094", "location": "113.927021,22.539754" }, { "name": "科技园1", "id": "440300014309059", "location": "113.949503,22.539801" }, { "name": "白石洲2", "id": "440300014309060", "location": "113.968969,22.538588" }, { "name": "何香凝美术馆", "id": "440300014309101", "location": "113.981267,22.533832" }, { "name": "锦绣中华2", "id": "440300014309021", "location": "113.990651,22.533255" }, { "name": "竹子林2", "id": "440300014309061", "location": "114.011927,22.533546" }, { "name": "深航大厦2", "id": "440300014309095", "location": "114.020243,22.534951" }, { "name": "深南香蜜立交1", "id": "440300014309062", "location": "114.030994,22.536855" }, { "name": "特区报社2", "id": "440300014309096", "location": "114.043817,22.539017" }, { "name": "投资大厦1", "id": "440300014309064", "location": "114.053659,22.539553" }, { "name": "岗厦北地铁站1", "id": "440300014309065", "location": "114.070863,22.539865" } ] } ] } }, { "walking": { "destination": "114.078667,22.540253", "distance": "14", "origin": "114.078529,22.540247", "steps": [ { "instruction": "沿深南中路步行14米到达田面", "road": "深南中路", "distance": "14", "polyline": { "polyline": "114.078529,22.540247;114.078667,22.540253" } } ] }, "bus": { "buslines": [ { "departure_stop": { "name": "田面", "id": "440300065897019", "location": "114.078666,22.540249" }, "arrival_stop": { "name": "黄贝岭", "id": "440300065897028", "location": "114.142437,22.548330" }, "name": "M191路(宝安客运中心--大梅沙公交总站)", "id": "440300065897", "type": "旅游专线", "distance": "6389", "polyline": { "polyline": "114.078666,22.540249;114.079445,22.540259;114.080003,22.540259;114.080711,22.540275;114.081092,22.540286;114.081285,22.540286;114.081639,22.540297;114.082031,22.540308;114.082181,22.540308;114.082245,22.540313;114.082948,22.540345;114.083325,22.540352;114.083806,22.540361;114.083881,22.540361;114.085464,22.540410;114.086381,22.540426;114.086783,22.540431;114.087245,22.540436;114.087460,22.540447;114.087776,22.540458;114.088103,22.540458;114.089294,22.540479;114.091864,22.540522;114.093103,22.540544;114.093156,22.540544;114.093757,22.540560;114.094707,22.540581;114.095871,22.540576;114.096289,22.540603;114.096407,22.540608;114.096810,22.540624;114.097448,22.540635;114.098306,22.540635;114.098950,22.540656;114.099569,22.540674;114.100275,22.540694;114.100329,22.540699;114.101665,22.540726;114.102174,22.540731;114.102228,22.540731;114.103220,22.540758;114.103285,22.540758;114.103590,22.540764;114.104003,22.540774;114.104127,22.540774;114.104652,22.540790;114.104797,22.540785;114.105130,22.540785;114.105650,22.540812;114.105865,22.540844;114.106015,22.540887;114.106337,22.540946;114.106991,22.541134;114.107780,22.541327;114.109201,22.541590;114.109818,22.541718;114.109990,22.541735;114.110559,22.541767;114.110966,22.541863;114.111369,22.541949;114.111449,22.541965;114.111841,22.542040;114.113139,22.542244;114.113595,22.542314;114.114355,22.542424;114.114593,22.542459;114.115193,22.542571;114.115682,22.542641;114.116132,22.542786;114.116969,22.542936;114.117538,22.543033;114.117822,22.543076;114.118761,22.543167;114.118836,22.543178;114.119893,22.543344;114.120188,22.543387;114.120252,22.543398;114.120750,22.543475;114.121288,22.543558;114.122189,22.543698;114.122285,22.543703;114.122511,22.543682;114.123492,22.543832;114.124157,22.543945;114.124823,22.544057;114.125365,22.544202;114.125960,22.544315;114.125976,22.544320;114.126094,22.544342;114.126555,22.544417;114.126915,22.544476;114.126958,22.544481;114.128605,22.544765;114.129919,22.544975;114.130090,22.545007;114.130434,22.545061;114.130911,22.545130;114.131056,22.545146;114.131399,22.545200;114.131593,22.545232;114.131732,22.545254;114.132252,22.545350;114.132338,22.545366;114.132987,22.545479;114.133813,22.545613;114.134602,22.545736;114.134688,22.545753;114.136109,22.545983;114.137198,22.546155;114.137853,22.546280;114.138148,22.546337;114.138384,22.546380;114.138915,22.546461;114.139612,22.546546;114.140986,22.546702;114.141441,22.546772;114.141710,22.546761;114.141758,22.546745;114.141871,22.546691;114.141946,22.546621;114.141973,22.546563;114.141994,22.546503;114.142005,22.546445;114.141994,22.546359;114.141962,22.546262;114.141924,22.546208;114.141887,22.546171;114.141833,22.546133;114.141747,22.546090;114.141683,22.546074;114.141619,22.546074;114.141549,22.546080;114.141490,22.546096;114.141425,22.546128;114.141356,22.546182;114.141297,22.546262;114.141270,22.546316;114.141254,22.546401;114.141265,22.546498;114.141318,22.546681;114.141656,22.547196;114.141860,22.547517;114.141946,22.547635;114.142026,22.547759;114.142112,22.547871;114.142262,22.548086;114.142300,22.548140;114.142437,22.548330" }, "bus_time_tips": "", "bustimetag": "0", "start_time": "", "end_time": "", "via_num": "5", "via_stops": [ { "name": "上海宾馆", "id": "440300065897020", "location": "114.083325,22.540352" }, { "name": "市委", "id": "440300065897079", "location": "114.099569,22.540674" }, { "name": "人民桥", "id": "440300065897075", "location": "114.114355,22.542424" }, { "name": "门诊部1", "id": "440300065897024", "location": "114.120750,22.543475" }, { "name": "黄贝岭地铁站2", "id": "440300065897027", "location": "114.137853,22.546280" } ] } ] } }, { "walking": { "destination": "114.142143,22.548620", "distance": "338", "origin": "114.142540,22.548468", "steps": [ { "instruction": "沿沿河路辅路步行78米向左前方行走", "road": "沿河路辅路", "distance": "78", "polyline": { "polyline": "114.142540,22.548468;114.142303,22.548141;114.142265,22.548090;114.142113,22.547873" } }, { "instruction": "步行25米向左前方行走", "road": "", "distance": "25", "polyline": { "polyline": "114.142113,22.547869;114.142044,22.547651" } }, { "instruction": "步行136米右转", "road": "", "distance": "136", "polyline": { "polyline": "114.142036,22.547647;114.142082,22.547626;114.141960,22.547375;114.141449,22.547691;114.141594,22.547926;114.141525,22.547974" } }, { "instruction": "步行28米向左前方行走", "road": "", "distance": "28", "polyline": { "polyline": "114.141525,22.547974;114.141533,22.547991;114.141655,22.548046;114.141769,22.548077" } }, { "instruction": "沿沿河北路辅路步行25米往前走", "road": "沿河北路辅路", "distance": "25", "polyline": { "polyline": "114.141769,22.548077;114.141891,22.548273" } }, { "instruction": "沿沿河北路出口步行46米", "road": "沿河北路出口", "distance": "46", "polyline": { "polyline": "114.141891,22.548273;114.142143,22.548620" } } ] } } ] }, { "distance": "22758", "walking_distance": "491", "nightflag": "0", "segments": [ { "walking": { "destination": "113.922882,22.540039", "distance": "152", "origin": "113.921379,22.540096", "steps": [ { "instruction": "沿深南大道步行152米到达南头1", "road": "深南大道", "distance": "152", "polyline": { "polyline": "113.921379,22.540096;113.921822,22.540073;113.922073,22.540070;113.922325,22.540056;113.922585,22.540049;113.922882,22.540039" } } ] }, "bus": { "buslines": [ { "departure_stop": { "name": "南头1", "id": "440300014173059", "location": "113.922829,22.540031" }, "arrival_stop": { "name": "上海宾馆", "id": "440300014173103", "location": "114.083325,22.540352" }, "name": "204路(蛇口SCT码头总站--建设路三岛中心总站)", "id": "440300014173", "type": "普通公交线路", "distance": "16282", "polyline": { "polyline": "113.922829,22.540031;113.923292,22.540023;113.923855,22.539996;113.923979,22.539996;113.924381,22.539991;113.924934,22.539959;113.925760,22.539921;113.926414,22.539895;113.926527,22.539889;113.926854,22.539873;113.927455,22.539841;113.928093,22.539803;113.928222,22.539793;113.928726,22.539750;113.929869,22.539701;113.930218,22.539675;113.931312,22.539621;113.932272,22.539556;113.932605,22.539535;113.932733,22.539525;113.932862,22.539514;113.933769,22.539476;113.934332,22.539465;113.935818,22.539396;113.936038,22.539299;113.936451,22.539283;113.937385,22.539261;113.938082,22.539281;113.939283,22.539315;113.939584,22.539326;113.940963,22.539385;113.941730,22.539423;113.942009,22.539433;113.942996,22.539476;113.943591,22.539514;113.944707,22.539567;113.945066,22.539583;113.945860,22.539637;113.946815,22.539667;113.947432,22.539680;113.948221,22.539734;113.948585,22.539755;113.948896,22.539825;113.949020,22.539878;113.949374,22.539900;113.950195,22.539943;113.950436,22.539954;113.950994,22.539975;113.952013,22.540018;113.952340,22.540023;113.952737,22.540034;113.953338,22.540055;113.953912,22.540077;113.954014,22.540077;113.954443,22.540098;113.954958,22.540109;113.955012,22.540111;113.955332,22.540121;113.955441,22.540125;113.955935,22.540141;113.956471,22.540152;113.957742,22.540195;113.958483,22.540211;113.961025,22.540259;113.961616,22.540265;113.962667,22.540286;113.963380,22.540270;113.963525,22.540270;113.963735,22.540249;113.964099,22.540211;113.964512,22.540157;113.964700,22.540125;113.965188,22.540018;113.965473,22.539825;113.966315,22.539573;113.966900,22.539369;113.966958,22.539347;113.967495,22.539154;113.967688,22.539074;113.968181,22.538870;113.968845,22.538628;113.969731,22.538316;113.970668,22.537917;113.972031,22.537431;113.972166,22.537387;113.972261,22.537361;113.973281,22.537001;113.973766,22.536821;113.973970,22.536762;113.974442,22.536601;113.975740,22.536118;113.976116,22.535973;113.976153,22.536054;113.977398,22.535603;113.977891,22.535399;113.978996,22.534895;113.979592,22.534611;113.979849,22.534493;113.979983,22.534428;113.980943,22.533978;113.981264,22.533836;113.981480,22.533741;113.982011,22.533565;113.982456,22.533468;113.982810,22.533414;113.983610,22.533366;113.986785,22.533312;113.988003,22.533286;113.988158,22.533283;113.988325,22.533280;113.988593,22.533270;113.990508,22.533259;113.990895,22.533248;113.992053,22.533232;113.992660,22.533205;113.993169,22.533125;113.993829,22.532958;113.993893,22.532942;113.994140,22.532792;113.994188,22.532760;113.994644,22.532653;113.994896,22.532588;113.995250,22.532497;113.995647,22.532395;113.996076,22.532277;113.997412,22.531955;113.998142,22.531821;113.998946,22.531735;113.999349,22.531703;113.999955,22.531698;114.000599,22.531703;114.001446,22.531784;114.001795,22.531826;114.002406,22.531918;114.003600,22.532116;114.003907,22.532167;114.004853,22.532325;114.004992,22.532347;114.005636,22.532454;114.006156,22.532663;114.007621,22.532883;114.008007,22.532958;114.008088,22.532975;114.008206,22.532996;114.008731,22.532969;114.009445,22.533088;114.010046,22.533189;114.010791,22.533339;114.010850,22.533350;114.012931,22.533728;114.013125,22.533763;114.013666,22.533843;114.014037,22.533897;114.014176,22.533913;114.014900,22.534010;114.015018,22.534031;114.015131,22.534053;114.015603,22.534128;114.016075,22.534208;114.016113,22.534214;114.016258,22.534246;114.017373,22.534450;114.017593,22.534487;114.017808,22.534525;114.018344,22.534627;114.018886,22.534718;114.019256,22.534777;114.019787,22.534873;114.020438,22.534983;114.021050,22.535087;114.021415,22.535182;114.021970,22.535273;114.022114,22.535299;114.023038,22.535456;114.023802,22.535586;114.024123,22.535642;114.025603,22.535902;114.025656,22.535914;114.026262,22.536011;114.027201,22.536000;114.027979,22.536032;114.028306,22.536059;114.028612,22.536102;114.028869,22.536156;114.029277,22.536279;114.029958,22.536542;114.030688,22.536815;114.030971,22.536852;114.031391,22.536906;114.031745,22.536955;114.032410,22.537084;114.033064,22.537175;114.033767,22.537303;114.034008,22.537459;114.035580,22.537722;114.036438,22.537883;114.036701,22.537926;114.037050,22.537980;114.038085,22.538156;114.038638,22.538253;114.039598,22.538425;114.040821,22.538629;114.040923,22.538645;114.042527,22.538918;114.043369,22.539047;114.044587,22.539267;114.044764,22.539299;114.045569,22.539385;114.046845,22.539481;114.047307,22.539492;114.048047,22.539503;114.048369,22.539498;114.048975,22.539530;114.050016,22.539551;114.050252,22.539556;114.050488,22.539562;114.050676,22.539567;114.051330,22.539583;114.052349,22.539621;114.052516,22.539551;114.053106,22.539551;114.053390,22.539544;114.053454,22.539546;114.054018,22.539567;114.054436,22.539648;114.055107,22.539675;114.055359,22.539675;114.055772,22.539675;114.056083,22.539675;114.056786,22.539680;114.057097,22.539669;114.057494,22.539610;114.058073,22.539508;114.058298,22.539476;114.059286,22.539326;114.059634,22.539299;114.059865,22.539310;114.060058,22.539331;114.060310,22.539374;114.060589,22.539433;114.061185,22.539600;114.061850,22.539707;114.062193,22.539787;114.062311,22.539803;114.063159,22.539852;114.064269,22.539868;114.064403,22.539782;114.065594,22.539793;114.066510,22.539798;114.068180,22.539809;114.068566,22.539814;114.069993,22.539846;114.070551,22.539857;114.070794,22.539863;114.070964,22.539868;114.071157,22.539809;114.071345,22.539755;114.071538,22.539728;114.071795,22.539744;114.072090,22.539803;114.072498,22.539916;114.073153,22.539938;114.073587,22.539948;114.073770,22.539959;114.074220,22.539980;114.074831,22.540045;114.075073,22.540088;114.075475,22.540104;114.075942,22.540109;114.076291,22.540115;114.076387,22.540115;114.076623,22.540109;114.077310,22.540131;114.077675,22.540152;114.077948,22.540227;114.078190,22.540243;114.078672,22.540247;114.079444,22.540256;114.080000,22.540256;114.080707,22.540273;114.081089,22.540286;114.081285,22.540286;114.081636,22.540295;114.082027,22.540304;114.082179,22.540304;114.082244,22.540312;114.082947,22.540343;114.083325,22.540352" }, "bus_time_tips": "", "bustimetag": "0", "start_time": "0530", "end_time": "2200", "via_num": "17", "via_stops": [ { "name": "深大北门2", "id": "440300014173027", "location": "113.938082,22.539281" }, { "name": "科技园2", "id": "440300014173028", "location": "113.946815,22.539667" }, { "name": "大冲2", "id": "440300014173060", "location": "113.955332,22.540121" }, { "name": "白石洲1", "id": "440300014173089", "location": "113.968845,22.538628" }, { "name": "世界之窗1", "id": "440300014173090", "location": "113.973281,22.537001" }, { "name": "何香凝美术馆", "id": "440300014173091", "location": "113.981264,22.533836" }, { "name": "锦绣中华1", "id": "440300014173125", "location": "113.988158,22.533283" }, { "name": "园博园2", "id": "440300014173093", "location": "114.003907,22.532167" }, { "name": "深圳人才园1", "id": "440300014173094", "location": "114.009445,22.533088" }, { "name": "竹子林1", "id": "440300014173095", "location": "114.012931,22.533728" }, { "name": "深航大厦1", "id": "440300014173096", "location": "114.020438,22.534983" }, { "name": "招商银行大厦1", "id": "440300014173097", "location": "114.025603,22.535902" }, { "name": "深南香蜜立交2", "id": "440300014173098", "location": "114.030971,22.536852" }, { "name": "投资大厦2", "id": "440300014173099", "location": "114.053390,22.539544" }, { "name": "海关综合大楼", "id": "440300014173100", "location": "114.066510,22.539798" }, { "name": "岗厦北地铁站1", "id": "440300014173101", "location": "114.070794,22.539863" }, { "name": "田面", "id": "440300014173102", "location": "114.078672,22.540247" } ] } ] } }, { "walking": { "destination": "114.083328,22.540352", "distance": "1", "origin": "114.083336,22.540352", "steps": [ { "instruction": "沿深南中路步行1米到达上海宾馆", "road": "深南中路", "distance": "1", "polyline": { "polyline": "114.083336,22.540352;114.083328,22.540352" } } ] }, "bus": { "buslines": [ { "departure_stop": { "name": "上海宾馆", "id": "440300065897020", "location": "114.083325,22.540352" }, "arrival_stop": { "name": "黄贝岭", "id": "440300065897028", "location": "114.142437,22.548330" }, "name": "M191路(宝安客运中心--大梅沙公交总站)", "id": "440300065897", "type": "旅游专线", "distance": "5985", "polyline": { "polyline": "114.083325,22.540352;114.083806,22.540361;114.083881,22.540361;114.085464,22.540410;114.086381,22.540426;114.086783,22.540431;114.087245,22.540436;114.087460,22.540447;114.087776,22.540458;114.088103,22.540458;114.089294,22.540479;114.091864,22.540522;114.093103,22.540544;114.093156,22.540544;114.093757,22.540560;114.094707,22.540581;114.095871,22.540576;114.096289,22.540603;114.096407,22.540608;114.096810,22.540624;114.097448,22.540635;114.098306,22.540635;114.098950,22.540656;114.099569,22.540674;114.100275,22.540694;114.100329,22.540699;114.101665,22.540726;114.102174,22.540731;114.102228,22.540731;114.103220,22.540758;114.103285,22.540758;114.103590,22.540764;114.104003,22.540774;114.104127,22.540774;114.104652,22.540790;114.104797,22.540785;114.105130,22.540785;114.105650,22.540812;114.105865,22.540844;114.106015,22.540887;114.106337,22.540946;114.106991,22.541134;114.107780,22.541327;114.109201,22.541590;114.109818,22.541718;114.109990,22.541735;114.110559,22.541767;114.110966,22.541863;114.111369,22.541949;114.111449,22.541965;114.111841,22.542040;114.113139,22.542244;114.113595,22.542314;114.114355,22.542424;114.114593,22.542459;114.115193,22.542571;114.115682,22.542641;114.116132,22.542786;114.116969,22.542936;114.117538,22.543033;114.117822,22.543076;114.118761,22.543167;114.118836,22.543178;114.119893,22.543344;114.120188,22.543387;114.120252,22.543398;114.120750,22.543475;114.121288,22.543558;114.122189,22.543698;114.122285,22.543703;114.122511,22.543682;114.123492,22.543832;114.124157,22.543945;114.124823,22.544057;114.125365,22.544202;114.125960,22.544315;114.125976,22.544320;114.126094,22.544342;114.126555,22.544417;114.126915,22.544476;114.126958,22.544481;114.128605,22.544765;114.129919,22.544975;114.130090,22.545007;114.130434,22.545061;114.130911,22.545130;114.131056,22.545146;114.131399,22.545200;114.131593,22.545232;114.131732,22.545254;114.132252,22.545350;114.132338,22.545366;114.132987,22.545479;114.133813,22.545613;114.134602,22.545736;114.134688,22.545753;114.136109,22.545983;114.137198,22.546155;114.137853,22.546280;114.138148,22.546337;114.138384,22.546380;114.138915,22.546461;114.139612,22.546546;114.140986,22.546702;114.141441,22.546772;114.141710,22.546761;114.141758,22.546745;114.141871,22.546691;114.141946,22.546621;114.141973,22.546563;114.141994,22.546503;114.142005,22.546445;114.141994,22.546359;114.141962,22.546262;114.141924,22.546208;114.141887,22.546171;114.141833,22.546133;114.141747,22.546090;114.141683,22.546074;114.141619,22.546074;114.141549,22.546080;114.141490,22.546096;114.141425,22.546128;114.141356,22.546182;114.141297,22.546262;114.141270,22.546316;114.141254,22.546401;114.141265,22.546498;114.141318,22.546681;114.141656,22.547196;114.141860,22.547517;114.141946,22.547635;114.142026,22.547759;114.142112,22.547871;114.142262,22.548086;114.142300,22.548140;114.142437,22.548330" }, "bus_time_tips": "", "bustimetag": "0", "start_time": "", "end_time": "", "via_num": "4", "via_stops": [ { "name": "市委", "id": "440300065897079", "location": "114.099569,22.540674" }, { "name": "人民桥", "id": "440300065897075", "location": "114.114355,22.542424" }, { "name": "门诊部1", "id": "440300065897024", "location": "114.120750,22.543475" }, { "name": "黄贝岭地铁站2", "id": "440300065897027", "location": "114.137853,22.546280" } ] } ] } }, { "walking": { "destination": "114.142143,22.548620", "distance": "338", "origin": "114.142540,22.548468", "steps": [ { "instruction": "沿沿河路辅路步行78米向左前方行走", "road": "沿河路辅路", "distance": "78", "polyline": { "polyline": "114.142540,22.548468;114.142303,22.548141;114.142265,22.548090;114.142113,22.547873" } }, { "instruction": "步行25米向左前方行走", "road": "", "distance": "25", "polyline": { "polyline": "114.142113,22.547869;114.142044,22.547651" } }, { "instruction": "步行136米右转", "road": "", "distance": "136", "polyline": { "polyline": "114.142036,22.547647;114.142082,22.547626;114.141960,22.547375;114.141449,22.547691;114.141594,22.547926;114.141525,22.547974" } }, { "instruction": "步行28米向左前方行走", "road": "", "distance": "28", "polyline": { "polyline": "114.141525,22.547974;114.141533,22.547991;114.141655,22.548046;114.141769,22.548077" } }, { "instruction": "沿沿河北路辅路步行25米往前走", "road": "沿河北路辅路", "distance": "25", "polyline": { "polyline": "114.141769,22.548077;114.141891,22.548273" } }, { "instruction": "沿沿河北路出口步行46米", "road": "沿河北路出口", "distance": "46", "polyline": { "polyline": "114.141891,22.548273;114.142143,22.548620" } } ] } } ] }, { "distance": "24845", "walking_distance": "368", "nightflag": "0", "segments": [ { "walking": { "destination": "113.921417,22.540094", "distance": "4", "origin": "113.921379,22.540096", "steps": [ { "instruction": "步行4米到达南头2", "road": "", "distance": "4", "polyline": { "polyline": "113.921379,22.540096;113.921417,22.540094" } } ] }, "bus": { "buslines": [ { "departure_stop": { "name": "南头2", "id": "440300014344085", "location": "113.921417,22.540095" }, "arrival_stop": { "name": "人民桥", "id": "440300014344075", "location": "114.114095,22.542386" }, "name": "337路(海上田园--火车站337总站)", "id": "440300014344", "type": "普通公交线路", "distance": "21305", "polyline": { "polyline": "113.921417,22.540095;113.921822,22.540071;113.922069,22.540066;113.922326,22.540055;113.922584,22.540045;113.923292,22.540023;113.923855,22.539996;113.924048,22.538495;113.924070,22.538156;113.924070,22.537207;113.924210,22.535716;113.924220,22.535667;113.924279,22.535367;113.924563,22.534520;113.924569,22.534471;113.924628,22.534219;113.924657,22.534006;113.924670,22.533937;113.924701,22.533472;113.924722,22.532956;113.924722,22.532891;113.924714,22.532791;113.924653,22.532444;113.924631,22.532352;113.924614,22.532014;113.924609,22.531806;113.924588,22.530959;113.924601,22.530521;113.924627,22.530260;113.924622,22.529718;113.924609,22.529605;113.924588,22.529401;113.924562,22.529184;113.924510,22.528845;113.924462,22.528568;113.924322,22.527862;113.924258,22.527508;113.924242,22.527460;113.923952,22.526290;113.923850,22.525781;113.923737,22.525201;113.923646,22.524767;113.923576,22.524488;113.923496,22.524161;113.923560,22.523968;113.924043,22.523839;113.924145,22.523812;113.924247,22.523791;113.924569,22.523715;113.924891,22.523635;113.925154,22.523560;113.925623,22.523445;113.926296,22.523281;113.926634,22.523206;113.926731,22.523185;113.926994,22.523125;113.927707,22.522943;113.927830,22.522905;113.927975,22.522820;113.928125,22.522745;113.928222,22.522696;113.928806,22.522463;113.929351,22.522312;113.929802,22.522223;113.930100,22.522165;113.930320,22.522128;113.930524,22.522092;113.930534,22.522090;113.930706,22.522090;113.930878,22.522054;113.931269,22.521972;113.931505,22.521929;113.931564,22.521913;113.932830,22.521688;113.933163,22.521661;113.933275,22.521672;113.933747,22.521586;113.934311,22.521564;113.934654,22.521554;113.935743,22.521516;113.935925,22.521441;113.936118,22.521382;113.936322,22.521323;113.936515,22.521291;113.936762,22.521253;113.937108,22.521240;113.937615,22.521221;113.937685,22.521216;113.938114,22.521194;113.939063,22.521259;113.940490,22.521162;113.941349,22.521130;113.943318,22.521087;113.943913,22.521125;113.944455,22.521060;113.946976,22.521023;113.947384,22.520996;113.947646,22.520990;113.948151,22.520985;113.948564,22.520980;113.949203,22.520967;113.949653,22.520958;113.950034,22.520937;113.950195,22.520921;113.950613,22.520872;113.950860,22.520851;113.951182,22.520824;113.953692,22.520566;113.954320,22.520502;113.954674,22.520465;113.954760,22.520454;113.955092,22.520422;113.955902,22.520341;113.956632,22.520390;113.957040,22.520406;113.957410,22.520448;113.958874,22.520288;113.959733,22.520143;113.960586,22.520095;113.961782,22.519966;113.963745,22.519746;113.964148,22.519735;113.966181,22.519574;113.967221,22.519547;113.968246,22.519531;113.972167,22.519553;113.973664,22.519563;113.976094,22.519590;113.978267,22.519601;113.979039,22.519590;113.979613,22.519510;113.980042,22.519494;113.980257,22.519488;113.980471,22.519488;113.980654,22.519488;113.981802,22.519494;113.982542,22.519553;113.982885,22.519563;113.984210,22.519574;113.984634,22.519590;113.984967,22.519622;113.985251,22.519676;113.985316,22.519703;113.985509,22.519853;113.985798,22.519864;113.986700,22.519950;113.987890,22.520073;113.988470,22.520164;113.989376,22.520320;113.990535,22.520577;113.991479,22.520830;113.992032,22.520990;113.992751,22.521221;113.993834,22.521634;113.994054,22.521629;113.994140,22.521634;113.994161,22.521634;113.994746,22.521725;113.994945,22.521779;113.995159,22.521854;113.995224,22.521881;113.995444,22.521972;113.995717,22.522101;113.996152,22.522326;113.997053,22.522814;113.997509,22.523072;113.998823,22.523882;113.998893,22.523925;113.999521,22.524300;113.999832,22.524487;114.000003,22.524590;114.000647,22.524992;114.000862,22.525185;114.001183,22.525475;114.001505,22.525706;114.001559,22.525749;114.001677,22.525904;114.002369,22.526215;114.003018,22.526457;114.003506,22.526618;114.003946,22.526741;114.004992,22.526966;114.005566,22.527058;114.006065,22.527106;114.006859,22.527149;114.007851,22.527133;114.008206,22.527106;114.009842,22.526929;114.011253,22.526768;114.012132,22.526693;114.013109,22.526687;114.013951,22.526730;114.014273,22.526773;114.015099,22.526896;114.016113,22.527138;114.017126,22.527379;114.018956,22.527776;114.019149,22.527814;114.021386,22.528313;114.022164,22.528501;114.022368,22.528485;114.022818,22.528474;114.024626,22.528838;114.024669,22.528844;114.025120,22.528956;114.025581,22.528951;114.025661,22.528956;114.026391,22.528973;114.027002,22.528946;114.027283,22.528914;114.027721,22.528865;114.027780,22.528860;114.028150,22.528790;114.028628,22.528667;114.028756,22.528635;114.029025,22.528683;114.029502,22.528533;114.029754,22.528468;114.030006,22.528409;114.030259,22.528350;114.030677,22.528238;114.030924,22.528120;114.031106,22.528050;114.032576,22.527706;114.033424,22.527513;114.034496,22.527288;114.035333,22.527170;114.035746,22.527143;114.036766,22.527090;114.037817,22.527116;114.037943,22.527114;114.037942,22.527116;114.038085,22.527116;114.038107,22.527116;114.038606,22.527154;114.039099,22.527197;114.040065,22.527304;114.040226,22.527326;114.040365,22.527342;114.040778,22.527385;114.041218,22.527433;114.041374,22.527455;114.041835,22.527519;114.042816,22.527621;114.042817,22.527622;114.043116,22.527652;114.043442,22.527691;114.043941,22.527730;114.044028,22.527743;114.044319,22.527769;114.044601,22.527795;114.045230,22.527873;114.045864,22.527947;114.046250,22.528025;114.046441,22.528095;114.046845,22.528125;114.047083,22.528151;114.047756,22.528229;114.048555,22.528312;114.049175,22.528368;114.050642,22.528411;114.051667,22.528420;114.051918,22.528420;114.052261,22.528429;114.052782,22.528455;114.054206,22.528498;114.054527,22.528498;114.056189,22.528516;114.056359,22.528516;114.057209,22.528537;114.057422,22.528537;114.057418,22.528537;114.057626,22.528542;114.057947,22.528546;114.058780,22.528602;114.059214,22.528615;114.060056,22.528624;114.060829,22.528628;114.061380,22.528628;114.061477,22.528624;114.062049,22.528598;114.062066,22.528594;114.062756,22.528602;114.063003,22.528611;114.063459,22.528624;114.063997,22.528633;114.064905,22.528663;114.065673,22.528685;114.067244,22.528707;114.067491,22.528707;114.067626,22.528715;114.067760,22.528715;114.067921,22.528720;114.068659,22.528728;114.069191,22.528742;114.069510,22.528742;114.069553,22.528742;114.069703,22.528742;114.069870,22.528742;114.070041,22.528742;114.071275,22.528742;114.072487,22.528769;114.073550,22.528796;114.074188,22.528812;114.075448,22.528849;114.076232,22.528892;114.076784,22.528914;114.077482,22.528924;114.078227,22.528940;114.078801,22.528944;114.080056,22.528951;114.081344,22.528978;114.081510,22.528989;114.081746,22.529016;114.081880,22.529053;114.082004,22.529075;114.082031,22.529085;114.082261,22.529198;114.082481,22.529321;114.082755,22.529531;114.082916,22.529702;114.083077,22.529933;114.083199,22.530161;114.083780,22.531263;114.083881,22.531478;114.084069,22.531859;114.084214,22.532105;114.084402,22.532470;114.084595,22.532781;114.084718,22.532958;114.084750,22.533001;114.084992,22.533264;114.085265,22.533554;114.085346,22.533624;114.085598,22.533849;114.085759,22.533978;114.085968,22.534101;114.086392,22.534283;114.086601,22.534337;114.087041,22.534428;114.087438,22.534466;114.087964,22.534503;114.088404,22.534471;114.088532,22.534444;114.088899,22.534471;114.089218,22.534474;114.090174,22.534482;114.090989,22.534493;114.091302,22.534497;114.091793,22.534501;114.091823,22.534501;114.092144,22.534518;114.092604,22.534536;114.093242,22.534596;114.094201,22.534722;114.096185,22.535135;114.096641,22.535195;114.096687,22.535196;114.096686,22.535197;114.096960,22.535206;114.098617,22.535152;114.099792,22.535142;114.100178,22.535158;114.100441,22.535174;114.100693,22.535185;114.100956,22.535228;114.101922,22.535249;114.102516,22.535263;114.102517,22.535260;114.102834,22.535270;114.103826,22.535265;114.104003,22.535270;114.104556,22.535292;114.104711,22.535201;114.104770,22.535185;114.104915,22.535158;114.105033,22.535158;114.105151,22.535126;114.106047,22.535126;114.106621,22.535131;114.106836,22.535185;114.107120,22.535244;114.107324,22.535254;114.107361,22.535255;114.107715,22.535260;114.107909,22.535276;114.107957,22.535281;114.108037,22.535324;114.108273,22.535319;114.108413,22.535308;114.108574,22.535270;114.108751,22.535185;114.109148,22.534986;114.109459,22.534836;114.109577,22.534788;114.109673,22.534761;114.109797,22.534766;114.109866,22.534782;114.109947,22.534809;114.110038,22.534873;114.110645,22.535453;114.111079,22.535861;114.111428,22.536198;114.111610,22.536429;114.111776,22.536708;114.111926,22.537084;114.111980,22.537314;114.111975,22.537507;114.111953,22.537717;114.111943,22.537813;114.111910,22.538280;114.111857,22.538623;114.111846,22.538715;114.111819,22.539042;114.111723,22.539701;114.111696,22.539900;114.111632,22.540482;114.111594,22.540780;114.111551,22.541187;114.111487,22.541643;114.111599,22.541826;114.111841,22.542040;114.113139,22.542244;114.113595,22.542314;114.114095,22.542386" }, "bus_time_tips": "", "bustimetag": "0", "start_time": "", "end_time": "", "via_num": "21", "via_stops": [ { "name": "南山文体中心", "id": "440300014344054", "location": "113.924657,22.534006" }, { "name": "协和深圳医院东", "id": "440300014344055", "location": "113.924462,22.528568" }, { "name": "荔园大厦", "id": "440300014344056", "location": "113.925623,22.523445" }, { "name": "滨海白石立交", "id": "440300014344108", "location": "113.930878,22.522054" }, { "name": "滨海之窗1", "id": "440300014344100", "location": "113.937108,22.521240" }, { "name": "深圳湾体育中心", "id": "440300014344059", "location": "113.949203,22.520967" }, { "name": "红树林", "id": "440300014344060", "location": "113.999832,22.524487" }, { "name": "上沙", "id": "440300014344061", "location": "114.027283,22.528914" }, { "name": "福田体育公园", "id": "440300014344062", "location": "114.037943,22.527114" }, { "name": "新洲村牌坊2", "id": "440300014344107", "location": "114.042816,22.527621" }, { "name": "会展中心南", "id": "440300014344064", "location": "114.057418,22.528537" }, { "name": "皇岗村北", "id": "440300014344065", "location": "114.061477,22.528624" }, { "name": "联合广场", "id": "440300014344066", "location": "114.069191,22.528742" }, { "name": "福滨新村2", "id": "440300014344086", "location": "114.078801,22.528944" }, { "name": "赤尾地铁站2", "id": "440300014344068", "location": "114.083199,22.530161" }, { "name": "滨河华强天桥", "id": "440300014344069", "location": "114.089218,22.534474" }, { "name": "上步中学2", "id": "440300014344087", "location": "114.091302,22.534497" }, { "name": "上步南天桥", "id": "440300014344071", "location": "114.096687,22.535196" }, { "name": "滨江新村2", "id": "440300014344088", "location": "114.102516,22.535263" }, { "name": "鹿丹村", "id": "440300014344073", "location": "114.107361,22.535255" }, { "name": "宝安南路", "id": "440300014344101", "location": "114.111632,22.540482" } ] } ] } }, { "walking": { "destination": "114.114342,22.542421", "distance": "26", "origin": "114.114090,22.542387", "steps": [ { "instruction": "沿深南东路步行26米到达人民桥", "road": "深南东路", "distance": "26", "polyline": { "polyline": "114.114090,22.542387;114.114288,22.542414;114.114342,22.542421" } } ] }, "bus": { "buslines": [ { "departure_stop": { "name": "人民桥", "id": "440300065897075", "location": "114.114355,22.542424" }, "arrival_stop": { "name": "黄贝岭", "id": "440300065897028", "location": "114.142437,22.548330" }, "name": "M191路(宝安客运中心--大梅沙公交总站)", "id": "440300065897", "type": "旅游专线", "distance": "3172", "polyline": { "polyline": "114.114355,22.542424;114.114593,22.542459;114.115193,22.542571;114.115682,22.542641;114.116132,22.542786;114.116969,22.542936;114.117538,22.543033;114.117822,22.543076;114.118761,22.543167;114.118836,22.543178;114.119893,22.543344;114.120188,22.543387;114.120252,22.543398;114.120750,22.543475;114.121288,22.543558;114.122189,22.543698;114.122285,22.543703;114.122511,22.543682;114.123492,22.543832;114.124157,22.543945;114.124823,22.544057;114.125365,22.544202;114.125960,22.544315;114.125976,22.544320;114.126094,22.544342;114.126555,22.544417;114.126915,22.544476;114.126958,22.544481;114.128605,22.544765;114.129919,22.544975;114.130090,22.545007;114.130434,22.545061;114.130911,22.545130;114.131056,22.545146;114.131399,22.545200;114.131593,22.545232;114.131732,22.545254;114.132252,22.545350;114.132338,22.545366;114.132987,22.545479;114.133813,22.545613;114.134602,22.545736;114.134688,22.545753;114.136109,22.545983;114.137198,22.546155;114.137853,22.546280;114.138148,22.546337;114.138384,22.546380;114.138915,22.546461;114.139612,22.546546;114.140986,22.546702;114.141441,22.546772;114.141710,22.546761;114.141758,22.546745;114.141871,22.546691;114.141946,22.546621;114.141973,22.546563;114.141994,22.546503;114.142005,22.546445;114.141994,22.546359;114.141962,22.546262;114.141924,22.546208;114.141887,22.546171;114.141833,22.546133;114.141747,22.546090;114.141683,22.546074;114.141619,22.546074;114.141549,22.546080;114.141490,22.546096;114.141425,22.546128;114.141356,22.546182;114.141297,22.546262;114.141270,22.546316;114.141254,22.546401;114.141265,22.546498;114.141318,22.546681;114.141656,22.547196;114.141860,22.547517;114.141946,22.547635;114.142026,22.547759;114.142112,22.547871;114.142262,22.548086;114.142300,22.548140;114.142437,22.548330" }, "bus_time_tips": "", "bustimetag": "0", "start_time": "", "end_time": "", "via_num": "2", "via_stops": [ { "name": "门诊部1", "id": "440300065897024", "location": "114.120750,22.543475" }, { "name": "黄贝岭地铁站2", "id": "440300065897027", "location": "114.137853,22.546280" } ] } ] } }, { "walking": { "destination": "114.142143,22.548620", "distance": "338", "origin": "114.142540,22.548468", "steps": [ { "instruction": "沿沿河路辅路步行78米向左前方行走", "road": "沿河路辅路", "distance": "78", "polyline": { "polyline": "114.142540,22.548468;114.142303,22.548141;114.142265,22.548090;114.142113,22.547873" } }, { "instruction": "步行25米向左前方行走", "road": "", "distance": "25", "polyline": { "polyline": "114.142113,22.547869;114.142044,22.547651" } }, { "instruction": "步行136米右转", "road": "", "distance": "136", "polyline": { "polyline": "114.142036,22.547647;114.142082,22.547626;114.141960,22.547375;114.141449,22.547691;114.141594,22.547926;114.141525,22.547974" } }, { "instruction": "步行28米向左前方行走", "road": "", "distance": "28", "polyline": { "polyline": "114.141525,22.547974;114.141533,22.547991;114.141655,22.548046;114.141769,22.548077" } }, { "instruction": "沿沿河北路辅路步行25米往前走", "road": "沿河北路辅路", "distance": "25", "polyline": { "polyline": "114.141769,22.548077;114.141891,22.548273" } }, { "instruction": "沿沿河北路出口步行46米", "road": "沿河北路出口", "distance": "46", "polyline": { "polyline": "114.141891,22.548273;114.142143,22.548620" } } ] } } ] }, { "distance": "22480", "walking_distance": "369", "nightflag": "0", "segments": [ { "walking": { "destination": "113.921631,22.540087", "distance": "26", "origin": "113.921379,22.540096", "steps": [ { "instruction": "沿深南大道步行26米到达南头2", "road": "深南大道", "distance": "26", "polyline": { "polyline": "113.921379,22.540096;113.921631,22.540087" } } ] }, "bus": { "buslines": [ { "departure_stop": { "name": "南头2", "id": "440300014309050", "location": "113.921660,22.540081" }, "arrival_stop": { "name": "田面", "id": "440300014309027", "location": "114.078533,22.540247" }, "name": "320路(西乡恒生医院--深业上城总站)", "id": "440300014309", "type": "普通公交线路", "distance": "15223", "polyline": { "polyline": "113.921660,22.540081;113.921822,22.540071;113.922069,22.540066;113.922326,22.540055;113.922584,22.540045;113.923292,22.540023;113.923855,22.539996;113.923979,22.539996;113.924381,22.539991;113.924483,22.539927;113.924590,22.539889;113.925449,22.539836;113.926270,22.539803;113.926860,22.539766;113.927021,22.539754;113.927682,22.539705;113.928181,22.539666;113.928220,22.539666;113.928260,22.539661;113.928724,22.539748;113.929878,22.539701;113.930217,22.539674;113.931311,22.539618;113.932270,22.539553;113.932604,22.539531;113.932730,22.539523;113.932860,22.539514;113.933767,22.539475;113.934332,22.539462;113.935816,22.539392;113.937656,22.539362;113.938034,22.539379;113.939536,22.539436;113.940586,22.539484;113.943342,22.539618;113.943880,22.539644;113.944631,22.539674;113.945378,22.539696;113.945812,22.539618;113.947365,22.539696;113.948220,22.539731;113.948585,22.539753;113.949158,22.539787;113.949503,22.539801;113.950191,22.539839;113.950412,22.539848;113.950942,22.539878;113.951259,22.539891;113.952339,22.540022;113.952734,22.540030;113.953338,22.540052;113.953911,22.540074;113.954010,22.540074;113.954440,22.540095;113.954957,22.540109;113.955438,22.540122;113.955933,22.540139;113.956471,22.540152;113.957739,22.540195;113.958481,22.540208;113.961024,22.540256;113.961615,22.540265;113.962665,22.540286;113.963459,22.540269;113.963733,22.540247;113.964097,22.540208;113.964510,22.540156;113.964701,22.540122;113.965273,22.539991;113.965503,22.539870;113.966315,22.539570;113.966923,22.539358;113.967491,22.539154;113.967687,22.539071;113.968181,22.538867;113.968679,22.538691;113.968969,22.538588;113.969731,22.538316;113.970668,22.537917;113.972031,22.537431;113.972166,22.537387;113.972261,22.537361;113.973967,22.536753;113.974440,22.536597;113.974909,22.536428;113.975738,22.536115;113.976115,22.535972;113.976150,22.536050;113.977396,22.535603;113.977891,22.535399;113.978993,22.534891;113.979592,22.534609;113.979848,22.534492;113.979983,22.534427;113.980942,22.533976;113.981267,22.533832;113.981480,22.533741;113.982010,22.533563;113.982457,22.533468;113.982808,22.533411;113.983607,22.533364;113.986784,22.533312;113.988003,22.533286;113.988325,22.533277;113.988589,22.533268;113.990508,22.533255;113.990651,22.533255;113.990894,22.533247;113.992053,22.533229;113.992656,22.533203;113.993168,22.533125;113.993828,22.532956;113.993893,22.532943;113.994136,22.532882;113.994666,22.532756;113.995278,22.532604;113.996450,22.532296;113.997036,22.532140;113.997352,22.532079;113.998203,22.531923;113.999180,22.531819;113.999670,22.531797;114.000577,22.531810;114.001432,22.531884;114.002383,22.532036;114.002730,22.532092;114.003872,22.532270;114.004818,22.532435;114.004991,22.532470;114.005838,22.532613;114.006155,22.532661;114.007617,22.532882;114.008003,22.532956;114.008086,22.532973;114.008203,22.532995;114.008728,22.532969;114.010043,22.533186;114.010790,22.533338;114.010846,22.533346;114.011931,22.533546;114.011927,22.533546;114.013125,22.533763;114.013666,22.533843;114.014037,22.533897;114.014176,22.533913;114.014900,22.534010;114.015018,22.534031;114.015131,22.534053;114.015603,22.534128;114.016075,22.534208;114.016113,22.534214;114.016258,22.534246;114.017373,22.534450;114.017593,22.534487;114.017808,22.534525;114.018344,22.534627;114.018886,22.534718;114.019256,22.534777;114.019787,22.534873;114.020047,22.534917;114.020238,22.534950;114.020243,22.534951;114.020552,22.535003;114.021053,22.535088;114.021418,22.535185;114.021971,22.535276;114.022115,22.535303;114.023038,22.535458;114.023805,22.535587;114.024127,22.535646;114.025656,22.535914;114.026262,22.536011;114.027201,22.536000;114.027979,22.536032;114.028306,22.536059;114.028612,22.536102;114.028869,22.536156;114.029277,22.536279;114.029958,22.536542;114.030688,22.536815;114.030994,22.536855;114.031391,22.536906;114.031745,22.536955;114.032410,22.537084;114.033064,22.537175;114.033767,22.537303;114.035907,22.537668;114.036433,22.537760;114.036476,22.537765;114.036712,22.537808;114.038085,22.538033;114.040848,22.538511;114.043638,22.538988;114.043817,22.539017;114.044785,22.539176;114.045268,22.539245;114.045864,22.539294;114.046271,22.539321;114.046845,22.539481;114.047307,22.539492;114.048047,22.539503;114.048369,22.539498;114.048975,22.539530;114.050016,22.539551;114.050252,22.539556;114.050488,22.539562;114.050676,22.539567;114.051330,22.539583;114.052349,22.539621;114.052516,22.539551;114.053106,22.539551;114.053454,22.539546;114.053659,22.539553;114.054018,22.539567;114.054436,22.539648;114.055107,22.539675;114.055359,22.539675;114.055772,22.539675;114.056083,22.539675;114.056786,22.539680;114.057097,22.539669;114.057494,22.539610;114.058073,22.539508;114.058298,22.539476;114.059286,22.539326;114.059634,22.539299;114.059865,22.539310;114.060058,22.539331;114.060310,22.539374;114.060589,22.539433;114.061185,22.539600;114.061850,22.539707;114.062193,22.539787;114.062311,22.539803;114.063159,22.539852;114.064269,22.539868;114.065605,22.539889;114.068426,22.539948;114.069671,22.539970;114.069993,22.539846;114.070551,22.539857;114.070863,22.539865;114.070964,22.539868;114.071157,22.539809;114.071345,22.539755;114.071538,22.539728;114.071795,22.539744;114.072090,22.539803;114.072498,22.539916;114.073153,22.539938;114.073587,22.539948;114.073770,22.539959;114.074220,22.539980;114.074831,22.540045;114.075073,22.540088;114.075475,22.540104;114.075942,22.540109;114.076291,22.540115;114.076387,22.540115;114.076580,22.540109;114.076725,22.540152;114.076993,22.540184;114.077948,22.540227;114.078190,22.540243;114.078533,22.540247" }, "bus_time_tips": "", "bustimetag": "0", "start_time": "", "end_time": "", "via_num": "11", "via_stops": [ { "name": "荔香公园", "id": "440300014309094", "location": "113.927021,22.539754" }, { "name": "科技园1", "id": "440300014309059", "location": "113.949503,22.539801" }, { "name": "白石洲2", "id": "440300014309060", "location": "113.968969,22.538588" }, { "name": "何香凝美术馆", "id": "440300014309101", "location": "113.981267,22.533832" }, { "name": "锦绣中华2", "id": "440300014309021", "location": "113.990651,22.533255" }, { "name": "竹子林2", "id": "440300014309061", "location": "114.011927,22.533546" }, { "name": "深航大厦2", "id": "440300014309095", "location": "114.020243,22.534951" }, { "name": "深南香蜜立交1", "id": "440300014309062", "location": "114.030994,22.536855" }, { "name": "特区报社2", "id": "440300014309096", "location": "114.043817,22.539017" }, { "name": "投资大厦1", "id": "440300014309064", "location": "114.053659,22.539553" }, { "name": "岗厦北地铁站1", "id": "440300014309065", "location": "114.070863,22.539865" } ] } ] } }, { "walking": { "destination": "114.078583,22.540253", "distance": "5", "origin": "114.078529,22.540247", "steps": [ { "instruction": "沿深南中路步行5米到达田面", "road": "深南中路", "distance": "5", "polyline": { "polyline": "114.078529,22.540247;114.078583,22.540253" } } ] }, "bus": { "buslines": [ { "departure_stop": { "name": "田面", "id": "440300014211030", "location": "114.078581,22.540247" }, "arrival_stop": { "name": "黄贝岭", "id": "440300014211041", "location": "114.142517,22.548433" }, "name": "223路(南头总站--宁水花园总站)", "id": "440300014211", "type": "普通公交线路", "distance": "6888", "polyline": { "polyline": "114.078581,22.540247;114.079445,22.540259;114.080003,22.540259;114.080711,22.540275;114.081092,22.540286;114.081285,22.540286;114.081639,22.540297;114.082031,22.540308;114.082181,22.540308;114.082245,22.540313;114.082948,22.540345;114.083566,22.540356;114.083806,22.540361;114.083881,22.540361;114.085464,22.540410;114.086381,22.540426;114.086783,22.540431;114.087245,22.540436;114.087460,22.540447;114.087776,22.540458;114.087803,22.540458;114.088103,22.540458;114.089294,22.540479;114.091359,22.540512;114.091862,22.540521;114.093103,22.540543;114.093155,22.540543;114.093754,22.540560;114.094705,22.540582;114.095881,22.540582;114.096289,22.540599;114.096406,22.540608;114.096810,22.540621;114.097257,22.540634;114.097448,22.540634;114.098342,22.540638;114.098950,22.540655;114.099644,22.540673;114.099640,22.540673;114.100273,22.540694;114.100326,22.540699;114.101662,22.540725;114.102170,22.540729;114.102227,22.540729;114.103220,22.540755;114.103281,22.540755;114.103589,22.540764;114.104002,22.540773;114.104123,22.540773;114.104653,22.540790;114.104796,22.540781;114.105130,22.540781;114.105473,22.540794;114.105803,22.540838;114.106024,22.540885;114.106610,22.541009;114.106991,22.541134;114.107780,22.541327;114.109201,22.541590;114.109818,22.541718;114.109990,22.541735;114.110559,22.541767;114.110966,22.541863;114.111369,22.541949;114.111449,22.541965;114.111841,22.542040;114.113139,22.542244;114.113595,22.542314;114.114105,22.542388;114.114397,22.542431;114.114593,22.542459;114.115193,22.542571;114.115682,22.542641;114.116132,22.542786;114.116969,22.542936;114.117538,22.543033;114.117822,22.543076;114.118761,22.543167;114.118836,22.543178;114.119893,22.543344;114.120188,22.543387;114.120252,22.543398;114.120870,22.543493;114.121288,22.543558;114.122189,22.543698;114.122285,22.543703;114.122511,22.543682;114.123492,22.543832;114.124157,22.543945;114.124823,22.544057;114.125263,22.544181;114.125653,22.544258;114.125944,22.544315;114.125976,22.544320;114.126079,22.544339;114.126094,22.544342;114.126555,22.544417;114.126915,22.544476;114.126958,22.544481;114.128605,22.544765;114.128975,22.544825;114.129141,22.544848;114.129136,22.544848;114.129276,22.544870;114.129918,22.544974;114.130087,22.545004;114.130434,22.545061;114.130911,22.545130;114.131055,22.545143;114.131398,22.545200;114.131593,22.545230;114.131732,22.545252;114.132253,22.545347;114.132335,22.545365;114.132986,22.545477;114.133329,22.545534;114.133813,22.545613;114.134602,22.545736;114.134688,22.545753;114.136109,22.545983;114.136793,22.546091;114.137198,22.546155;114.138148,22.546337;114.138384,22.546380;114.138915,22.546461;114.139612,22.546546;114.140986,22.546702;114.141441,22.546772;114.141710,22.546761;114.141758,22.546745;114.141871,22.546691;114.141946,22.546621;114.141973,22.546563;114.141994,22.546503;114.142005,22.546445;114.141994,22.546359;114.141962,22.546262;114.141924,22.546208;114.141887,22.546171;114.141833,22.546133;114.141747,22.546090;114.141683,22.546074;114.141619,22.546074;114.141549,22.546080;114.141490,22.546096;114.141425,22.546128;114.141356,22.546182;114.141297,22.546262;114.141270,22.546316;114.141254,22.546401;114.141265,22.546498;114.141318,22.546681;114.141656,22.547196;114.141860,22.547517;114.141946,22.547635;114.142026,22.547759;114.142112,22.547871;114.142262,22.548086;114.142300,22.548140;114.142517,22.548433" }, "bus_time_tips": "", "bustimetag": "0", "start_time": "", "end_time": "", "via_num": "11", "via_stops": [ { "name": "上海宾馆", "id": "440300014211031", "location": "114.083566,22.540356" }, { "name": "赛格广场", "id": "440300014211061", "location": "114.087803,22.540458" }, { "name": "兴华宾馆西", "id": "440300014211032", "location": "114.091359,22.540512" }, { "name": "市委", "id": "440300014211033", "location": "114.099640,22.540673" }, { "name": "地王大厦", "id": "440300014211034", "location": "114.106610,22.541009" }, { "name": "人民桥", "id": "440300014211035", "location": "114.114397,22.542431" }, { "name": "门诊部1", "id": "440300014211036", "location": "114.120870,22.543493" }, { "name": "湖贝地铁站", "id": "440300014211037", "location": "114.125653,22.544258" }, { "name": "京鹏大厦", "id": "440300014211038", "location": "114.128975,22.544825" }, { "name": "冶金大厦", "id": "440300014211039", "location": "114.133329,22.545534" }, { "name": "黄贝岭地铁站4", "id": "440300014211040", "location": "114.136793,22.546091" } ] } ] } }, { "walking": { "destination": "114.142143,22.548620", "distance": "338", "origin": "114.142540,22.548468", "steps": [ { "instruction": "沿沿河路辅路步行78米向左前方行走", "road": "沿河路辅路", "distance": "78", "polyline": { "polyline": "114.142540,22.548468;114.142303,22.548141;114.142265,22.548090;114.142113,22.547873" } }, { "instruction": "步行25米向左前方行走", "road": "", "distance": "25", "polyline": { "polyline": "114.142113,22.547869;114.142044,22.547651" } }, { "instruction": "步行136米右转", "road": "", "distance": "136", "polyline": { "polyline": "114.142036,22.547647;114.142082,22.547626;114.141960,22.547375;114.141449,22.547691;114.141594,22.547926;114.141525,22.547974" } }, { "instruction": "步行28米向左前方行走", "road": "", "distance": "28", "polyline": { "polyline": "114.141525,22.547974;114.141533,22.547991;114.141655,22.548046;114.141769,22.548077" } }, { "instruction": "沿沿河北路辅路步行25米往前走", "road": "沿河北路辅路", "distance": "25", "polyline": { "polyline": "114.141769,22.548077;114.141891,22.548273" } }, { "instruction": "沿沿河北路出口步行46米", "road": "沿河北路出口", "distance": "46", "polyline": { "polyline": "114.141891,22.548273;114.142143,22.548620" } } ] } } ] } ] }, "count": "5" }
|