├── .gitignore ├── 1.png ├── 2.png ├── 3.png ├── AMap_API_Table.zip ├── README.md ├── amap.py ├── data_amap.json ├── 上海卫生服务中心-高德地图2017-04-05.xls └── 上海卫生服务中心-高德地图2017-04-06.xls /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | env/ 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | *.egg-info/ 24 | .installed.cfg 25 | *.egg 26 | 27 | # PyInstaller 28 | # Usually these files are written by a python script from a template 29 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 30 | *.manifest 31 | *.spec 32 | 33 | # Installer logs 34 | pip-log.txt 35 | pip-delete-this-directory.txt 36 | 37 | # Unit test / coverage reports 38 | htmlcov/ 39 | .tox/ 40 | .coverage 41 | .coverage.* 42 | .cache 43 | nosetests.xml 44 | coverage.xml 45 | *,cover 46 | .hypothesis/ 47 | 48 | # Translations 49 | *.mo 50 | *.pot 51 | 52 | # Django stuff: 53 | *.log 54 | local_settings.py 55 | 56 | # Flask stuff: 57 | instance/ 58 | .webassets-cache 59 | 60 | # Scrapy stuff: 61 | .scrapy 62 | 63 | # Sphinx documentation 64 | docs/_build/ 65 | 66 | # PyBuilder 67 | target/ 68 | 69 | # IPython Notebook 70 | .ipynb_checkpoints 71 | 72 | # pyenv 73 | .python-version 74 | 75 | # celery beat schedule file 76 | celerybeat-schedule 77 | 78 | # dotenv 79 | .env 80 | 81 | # virtualenv 82 | venv/ 83 | ENV/ 84 | 85 | # Spyder project settings 86 | .spyderproject 87 | 88 | # Rope project settings 89 | .ropeproject 90 | -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyu8969/python-to-amap/16fedf19a76cf50747f4374af3bc803b4f82a0a1/1.png -------------------------------------------------------------------------------- /2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyu8969/python-to-amap/16fedf19a76cf50747f4374af3bc803b4f82a0a1/2.png -------------------------------------------------------------------------------- /3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyu8969/python-to-amap/16fedf19a76cf50747f4374af3bc803b4f82a0a1/3.png -------------------------------------------------------------------------------- /AMap_API_Table.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyu8969/python-to-amap/16fedf19a76cf50747f4374af3bc803b4f82a0a1/AMap_API_Table.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # python-to-amap 2 | 基于Python3实现高德地图POI检索数据获取,并写入json与exce文件。 3 | 4 | 5 | ![image](https://github.com/tianyu8969/python-to-amap/raw/master/1.png) 6 | 7 | ![image](https://github.com/tianyu8969/python-to-amap/raw/master/2.png) 8 | 9 | ![image](https://github.com/tianyu8969/python-to-amap/raw/master/3.png) 10 | -------------------------------------------------------------------------------- /amap.py: -------------------------------------------------------------------------------- 1 | # 高德地图:http://ditu.amap.com/ 高德地图poi:http://lbs.amap.com/api/webservice/guide/api/search/#text 2 | # coding:utf-8 3 | # github:https://github.com/tianyu8969/python-to-amap 4 | 5 | import json 6 | import xlwt 7 | from datetime import datetime 8 | from urllib import request 9 | from urllib.parse import quote 10 | import sys 11 | import time 12 | 13 | # 获取当前日期 14 | today = datetime.today() 15 | # 将获取到的datetime对象仅取日期如:2017-4-6 16 | today_date = datetime.date(today) 17 | 18 | json_name = 'data_amap.json' 19 | # 高德地图poi:http://lbs.amap.com/api/webservice/guide/api/search/#text 20 | # 请替换为自己申请的key值:申请Web服务API类型KEY http://lbs.amap.com/dev/ 21 | # 090000医疗 22 | url_amap = 'http://restapi.amap.com/v3/place/text?key=6159ef91602ee2dbd718fc7c30601397&keywords=卫生服务中心&types=090000&city=上海&citylimit=true&children=1&offset=20&page=pageindex&extensions=all' 23 | page_size = 20 # 每页记录数据,强烈建议不超过25,若超过25可能造成访问报错 24 | page_index = r'page=1' # 显示页码 25 | total_record = 0 # 定义全局变量,总行数 26 | # Excel表头 27 | hkeys = ['id', '行业类型', '医院名称', '医院类型', '医院地址', '联系电话', 'location', '省份代码', '省份名称', '城市代码', '城市名称', '区域代码', '区域名称', 28 | '所在商圈'] 29 | # 获取数据列 30 | bkeys = ['id', 'biz_type', 'name', 'type', 'address', 'tel', 'location', 'pcode', 'pname', 'citycode', 'cityname', 31 | 'adcode', 'adname', 'business_area'] 32 | 33 | 34 | # 获取数据 35 | def get_data(pageindex): 36 | global total_record 37 | # 暂停500毫秒,防止过快取不到数据 38 | time.sleep(0.5) 39 | print('解析页码: ' + str(pageindex) + ' ... ...') 40 | url = url_amap.replace('pageindex', str(pageindex)) 41 | # 中文编码 42 | url = quote(url, safe='/:?&=') 43 | html = "" 44 | with request.urlopen(url) as f: 45 | html = f.read() 46 | rr = json.loads(html) 47 | if total_record == 0: 48 | total_record = int(rr['count']) 49 | return rr['pois'] 50 | 51 | 52 | def getPOIdata(): 53 | global total_record 54 | print('获取POI数据开始') 55 | josn_data = get_data(1) 56 | if (total_record % page_size) != 0: 57 | page_number = int(total_record / page_size) + 2 58 | else: 59 | page_number = int(total_record / page_size) + 1 60 | 61 | with open(json_name, 'w') as f: 62 | # 去除最后] 63 | f.write(json.dumps(josn_data).rstrip(']')) 64 | for each_page in range(2, page_number): 65 | html = json.dumps(get_data(each_page)).lstrip('[').rstrip(']') 66 | if html: 67 | html = "," + html 68 | f.write(html) 69 | print('已保存到json文件:' + json_name) 70 | f.write(']') 71 | print('获取POI数据结束') 72 | 73 | 74 | # 写入数据到excel 75 | def write_data_to_excel(name): 76 | # 从文件中读取数据 77 | fp = open(json_name, 'r') 78 | result = json.loads(fp.read()) 79 | # 实例化一个Workbook()对象(即excel文件) 80 | wbk = xlwt.Workbook() 81 | # 新建一个名为Sheet1的excel sheet。此处的cell_overwrite_ok =True是为了能对同一个单元格重复操作。 82 | sheet = wbk.add_sheet('Sheet1', cell_overwrite_ok=True) 83 | 84 | # 创建表头 85 | # for循环访问并获取数组下标enumerate函数 86 | for index, hkey in enumerate(hkeys): 87 | sheet.write(0, index, hkey) 88 | 89 | # 遍历result中的没个元素。 90 | for i in range(len(result)): 91 | values = result[i] 92 | n = i + 1 93 | for index, key in enumerate(bkeys): 94 | val = "" 95 | # 判断是否存在属性key 96 | if key in values.keys(): 97 | val = values[key] 98 | sheet.write(n, index, val) 99 | wbk.save(name + str(today_date) + '.xls') 100 | print('保存到excel文件: ' + name + str(today_date) + '.xls !') 101 | 102 | 103 | if __name__ == '__main__': 104 | # 写入数据到json文件,第二次运行可注释 105 | getPOIdata() 106 | # 读取json文件数据写入到excel 107 | write_data_to_excel("上海卫生服务中心-高德地图") 108 | -------------------------------------------------------------------------------- /data_amap.json: -------------------------------------------------------------------------------- 1 | [{"id": "B0FFF5EG0J", "name": "\u7a0b\u5bb6\u6865\u536b\u751f\u670d\u52a1\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u8679\u4e95\u8def966\u53f7\u9644\u8fd1", "location": "121.367338,31.189700", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310105", "adname": "\u957f\u5b81\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621622921", "distance": [], "navi_poiid": "H51F010011_1030220", "entr_location": [], "business_area": "\u7a0b\u5bb6\u6865", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFFPTPJG", "name": "\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u4eba\u624d\u516c\u5bd3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6c5f\u6865\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u865e\u59ec\u58a9\u8def48\u53f7", "location": "121.344077,31.253704", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310114", "adname": "\u5609\u5b9a\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621720711", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "2.2", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/7e12f667d8a8ed1a68968e631dd1ee3d"}]}, {"id": "B00156ZH7N", "name": "\u4e07\u7965\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e07\u548c\u8def185\u53f7", "location": "121.818360,30.969137", "tel": "021-58046086", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621366501", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.5", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/c8b35118a6769000965c3980e00ee6b6"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/422f4c2d1c8ae0789daaa0d7edcbbdd0"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/f046b371c31e17ffee2c2878e4e7d15f"}]}, {"id": "B0FFHN0B7G", "name": "\u4e07\u6751\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3(\u5165\u53e3)", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6b66\u5b9a\u897f\u8def\u535750\u7c73", "location": "121.431196,31.224383", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310105", "adname": "\u957f\u5b81\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621636421", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B001574OY6", "name": "\u53e4\u7f8e\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3-\u513f\u79d1", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u9f99\u8317\u8def668\u53f7", "location": "121.388371,31.133545", "tel": "021-54165659", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310112", "adname": "\u95f5\u884c\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621536100", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u6885\u9647", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.2", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/0d7051a08e831fcd71cd2d7d056e0111"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/ba573af26e3c1db84e0d286f9ba2318b"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/62a27f1aab75f46c86479db586201e6b"}]}, {"id": "B0FFG3W10W", "name": "\u6d0b\u6cfe\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u513f\u79d1", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u7075\u5c71\u8def885\u53f7(\u8fd1\u56db\u65b9\u8def)", "location": "121.552133,31.232619", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621647420", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u6d0b\u6cfe", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.5", "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B00156NTVN", "name": "\u5e73\u51c9\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u5065\u5eb7\u6c99\u9f99", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5e73\u51c9\u8def\u4e0e\u798f\u7984\u8857\u4ea4\u53c9\u53e3\u897f\u531750\u7c73", "location": "121.519895,31.254657", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621740111", "distance": [], "navi_poiid": "H51F009013_425679", "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/dda2ee1a619ee6ff3e98bdd3798b1793"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/707cec51901ae0795ee730fde761866e"}]}, {"id": "B0FFG8V2B0", "name": "\u989b\u6865\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u4f53\u68c0\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u989b\u6865\u9547", "location": "121.396895,31.067155", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310112", "adname": "\u95f5\u884c\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621438102", "distance": [], "navi_poiid": "H51F012012_46045", "entr_location": [], "business_area": "\u8398\u5e84\u5de5\u4e1a\u533a", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFGBBSTT", "name": "\u4e03\u5b9d\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3-\u4f4f\u9662\u697c", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e03\u8398\u8def\u4e0e\u5bcc\u5f3a\u8857\u4ea4\u53c9\u53e3\u4e1c\u5317100\u7c73", "location": "121.353019,31.150165", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310112", "adname": "\u95f5\u884c\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621528800", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u4e03\u5b9d", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHG7JHF", "name": "\u9752\u6d66\u533a\u51e4\u6eaa\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u51e4\u4e2d\u8def\u4e0e\u51e4\u661f\u8def\u4ea4\u53c9\u53e3\u4e1c\u531750\u7c73", "location": "121.228224,31.199328", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310118", "adname": "\u9752\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": [], "poiweight": [], "gridcode": "4621613820", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/128a1e985a094b979173414133fd5f5f"}]}, {"id": "B001570W5F", "name": "\u6cd6\u6e2f\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u5206\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6cd6\u6e2f\u9547\u4e94\u538d\u5927\u8857\u4e8c\u53f7\u885780\u53f7", "location": "121.141830,30.957439", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310117", "adname": "\u677e\u6c5f\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621314121", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.2", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/a2040c0aa3762f71805aba8e38e64b84"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/1efd4b4c2e8312241115613baf373fb2"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/fc0c252df2e6cb54ff8959c63f068081"}]}, {"id": "B0FFG2BAIY", "name": "\u4f58\u5c71\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3-\u95e8\u8bca\u697c", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u9648\u574a\u6865\u4f58\u65b0\u8def18\u53f7(\u8054\u5408\u75c5\u623f\u529e\u516c\u5ba4)\u4f58\u5c71\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3", "location": "121.181502,31.095587", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310117", "adname": "\u677e\u6c5f\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621511411", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u4f58\u5c71", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFG94YP7", "name": "\u822a\u5934\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u533b\u6280\u697c", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u822a\u5934\u9547\u6caa\u5357\u516c\u8def5395\u53f7", "location": "121.593771,31.045165", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621445711", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u822a\u5934", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHDY8UO", "name": "\u957f\u767d\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u4e0a\u7406\u670d\u52a1\u70b9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6d77\u601d\u8def\u4e0e\u6e5b\u6069\u5927\u9053\u4ea4\u53c9\u53e3\u897f\u5317100\u7c73", "location": "121.552750,31.291359", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": [], "poiweight": [], "gridcode": "4621744420", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/dd9c19aa0960ac664a8ca9793173f06e"}]}, {"id": "B0FFHHBVHV", "name": "\u95f5\u884c\u533a\u989b\u6865\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u989b\u6865\u9547\u90fd\u5e02\u8def4258\u53f7", "location": "121.396890,31.091851", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310112", "adname": "\u95f5\u884c\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621531102", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u989b\u6865", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "2.4", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/16d29bf83f510cc04bd48c2dfe6f577e"}]}, {"id": "B0FFG1VAH7", "name": "\u4f58\u5c71\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3-\u4f4f\u9662\u90e8", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u9648\u574a\u6865\u4f58\u65b0\u8def18\u53f7(\u8054\u5408\u75c5\u623f\u529e\u516c\u5ba4)\u4f58\u5c71\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3", "location": "121.181237,31.096303", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310117", "adname": "\u677e\u6c5f\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621511411", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u4f58\u5c71", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFF00OH4", "name": "\u738b\u6e2f\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u5fd7\u613f\u670d\u52a1\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5510\u9547\u738b\u6e2f\u9547\u65b0\u96c5\u8def196\u53f7", "location": "121.682056,31.236542", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621658411", "distance": [], "navi_poiid": "H51F010014_60358", "entr_location": "121.682251,31.235956", "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFGQVP2J", "name": "\u65b0\u6d5c\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3-\u4f4f\u9662\u90e8", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5171\u9752\u8def1237\u53f7", "location": "121.066880,30.930082", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310117", "adname": "\u677e\u6c5f\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621301511", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u65b0\u6d5c\u9547", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHGEZFN", "name": "\u63d0\u84dd\u6865\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3(\u4e09\u76ca\u987f\u670d\u52a1\u7ad9)", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5510\u5c71\u8def\u4e0e\u821f\u5c71\u8def\u4ea4\u53c9\u53e3\u897f\u5357100\u7c73", "location": "121.506250,31.256037", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310109", "adname": "\u8679\u53e3\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621740021", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u5317\u5916\u6ee9", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/1a27771701d6ce7cb1ec64fc611d3717"}]}, {"id": "B00156OCRQ", "name": "\u4e0a\u94a2\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u7b2c\u4e8c\u533b\u7597\u670d\u52a1\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u8000\u534e\u8def421\u5f0425\u53f7", "location": "121.481700,31.173319", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621630821", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.8", "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFGBBZBO", "name": "\u5949\u8d24\u533a\u9752\u6751\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u95e8\u8bca\u697c", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u9547\u5357\u8def70\u53f7\u9644\u8fd1", "location": "121.585228,30.921445", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310120", "adname": "\u5949\u8d24\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621340612", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFG77W2R", "name": "\u957f\u5f81\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u5bb6\u5ead\u533b\u751f\u5de5\u4f5c\u5ba4", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e07\u9547\u8def\u4e0e\u5ef6\u5ddd\u8def\u4ea4\u53c9\u53e3\u4e1c100\u7c73", "location": "121.376097,31.242085", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310107", "adname": "\u666e\u9640\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621639000", "distance": [], "navi_poiid": "H51F010011_327080", "entr_location": "121.376102,31.241972", "business_area": "\u957f\u5f81", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/55acca20a310a084c90fb589"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/55acca20a310a084c90fb581"}]}, {"id": "B0FFHU25ZW", "name": "\u5eb7\u4e50\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u95e8\u8bca\u8f93\u6db2\u5ba4", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u767e\u82b1\u8857214\u53f7\u9644\u8fd1", "location": "121.414546,31.148034", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310104", "adname": "\u5f90\u6c47\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621537320", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u5eb7\u5065", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFFE7IR5", "name": "\u6c5f\u6d66\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u4e94\u73af\u536b\u751f\u670d\u52a1\u7ad9\u70b9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u8fbd\u6e90\u4e00\u6751\u94c1\u8def\u5de5\u623f190\u5f049\u53f7103-107\u5ba4", "location": "121.509989,31.269029", "tel": "021-65141057", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621742002", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHN4K3R", "name": "\u6c5f\u82cf\u8def\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u4e1c\u6ee8\u5206\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e1c\u8bf8\u5b89\u6d5c\u8def166\u53f7\u9644\u8fd1", "location": "121.433428,31.218521", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310105", "adname": "\u957f\u5b81\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621636402", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHBU7VP", "name": "\u66f9\u5bb6\u6e21\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u793e\u533a\u5eb7\u590d\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u660c\u5e73\u8def890\u53f7", "location": "121.438518,31.233256", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310106", "adname": "\u9759\u5b89\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621637520", "distance": [], "navi_poiid": "H51F010012_1185507", "entr_location": [], "business_area": "\u66f9\u5bb6\u6e21", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/9939a11e06312012fd8936fdb0ee3a7e"}]}, {"id": "B001510A2C", "name": "\u5e7f\u4e2d\u8def\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u5065\u5eb7\u7ba1\u7406\u9a7f\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5e7f\u7075\u4e00\u8def80\u53f7\u5e7f\u4e2d\u8def\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3", "location": "121.478901,31.281228", "tel": "021-65421455", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310109", "adname": "\u8679\u53e3\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621733820", "distance": [], "navi_poiid": "H51F009012_36546", "entr_location": [], "business_area": "\u6c5f\u6e7e", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/869959b9ec5c74a710ab74fe8abf7cb8"}, {"title": "\u5185\u666f\u56fe", "url": "http://store.is.autonavi.com/showpic/dffeb60c7866dc89eeb747be3d51148f"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/3ed434bd3fe3f08f982bf20386ee15a2"}]}, {"id": "B0FFFE5D9X", "name": "\u5927\u6865\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u5bcc\u5929\u82d1\u670d\u52a1\u70b9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5468\u5bb6\u5634\u8def3118\u5f0430\u53f7", "location": "121.533016,31.275214", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621743201", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFH7FM3I", "name": "\u5927\u6865\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u957f\u9633\u65b0\u82d1\u670d\u52a1\u70b9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u957f\u9633\u8def1318\u5f04-57\u53f7", "location": "121.528740,31.268346", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621742200", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFH10SHB", "name": "\u57ce\u6865\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u65e0\u969c\u788d\u901a\u9053", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u82b1\u9e1f\u8def309\u53f7\u9644\u8fd1", "location": "121.409910,31.631730", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310151", "adname": "\u5d07\u660e\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4721335222", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u57ce\u6865", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFGVH5TJ", "name": "\u4e03\u5b9d\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u9884\u9632\u4fdd\u5065\u90e8\u9884\u9632\u63a5\u79cd\u95e8\u8bca", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e03\u5b9d\u4e09\u516b\u8def\u4e0e\u4e03\u8398\u8def\u4ea4\u53c9\u53e3\u4e1c\u5317100\u7c73", "location": "121.352554,31.150759", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310112", "adname": "\u95f5\u884c\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621528800", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u4e03\u5b9d", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/33a7162d621d17364d9061b73e2d0617"}]}, {"id": "B0FFHSDFVS", "name": "\u9646\u5bb6\u5634\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u9646\u5bb6\u5634\u793e\u533a\u4e49\u5de5\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u798f\u5c71\u8def35\u53f7\u9644\u8fd1", "location": "121.524539,31.238122", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621648112", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFG951BL", "name": "\u4e0a\u6d77\u5e02\u6d66\u4e1c\u65b0\u533a\u91d1\u6768\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3-\u533b\u52a1\u529e\u516c\u5ba4", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u91d1\u6768\u8def121\u53f74\u697c", "location": "121.572969,31.246854", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621649512", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u91d1\u6865", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHHO5XQ", "name": "\u5357\u6c47\u533a\u60e0\u5357\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u5357\u95e8\u793e\u533a\u536b\u751f\u670d\u52a1\u793e", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e2d\u5c71\u8def\u4e0e\u57ce\u57fa\u8def\u4ea4\u53c9\u53e3\u4e1c\u531750\u7c73", "location": "121.751321,31.045086", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621465010", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u60e0\u5357", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFH166OS", "name": "\u590d\u65e6\u5927\u5b66\u4e0a\u6d77\u533b\u5b66\u9662\u67ab\u6797\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u95e8\u8bca\u697c", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u53cc\u5cf0\u8def456\u53f7", "location": "121.449374,31.180258", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310104", "adname": "\u5f90\u6c47\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621631512", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u9f99\u534e", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/f16749adeb140fe5b063501d17c6782f"}]}, {"id": "B0FFG0PZI0", "name": "\u4e0a\u6d77\u5e02\u6768\u6d66\u533a\u4e94\u89d2\u573a\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3-\u9884\u9632\u4fdd\u5065\u79d1", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u8425\u53e3\u8def760\u53f7\u4e94\u89d2\u573a\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u95e8\u536b\u5bf9\u9762", "location": "121.533559,31.296581", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621745212", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHTZP3L", "name": "\u4e0a\u6d77\u5e02\u5b9d\u5c71\u533a\u53cb\u8c0a\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u5bb6\u5ead\u533b\u751f\u5de5\u4f5c\u5ba4", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6d77\u6c5f\u4e8c\u8def\u9644\u8fd1", "location": "121.487497,31.392227", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310113", "adname": "\u5b9d\u5c71\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4721037802", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u5434\u6dde", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHN4JOO", "name": "\u4e0a\u6d77\u5e02\u666e\u9640\u533a\u957f\u5bff\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u7b2c\u4e8c\u6267\u4e1a\u70b9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e1c\u65b0\u8def230\u5f0420\u53f7", "location": "121.424590,31.240889", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310107", "adname": "\u666e\u9640\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621638322", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHTWIIQ", "name": "\u4e0a\u6d77\u5e02\u8679\u53e3\u533a\u63d0\u7bee\u6865\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u536b\u751f\u76d1\u7763\u79d1", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4fdd\u5b9a\u8def557\u53f7\u9644\u8fd1", "location": "121.506686,31.261411", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310109", "adname": "\u8679\u53e3\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621741011", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u5317\u5916\u6ee9", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHDJZYI", "name": "\u80a1\u884c\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u653f\u7acb\u793e\u533a\u536b\u751f\u670d\u52a1\u7ad9\u5bb6\u5ead\u533b\u751f\u5de5\u4f5c\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u653f\u7acb\u8def505\u53f7(\u65b0\u6c5f\u6e7e\u4f73\u82d1\u65c1)", "location": "121.504516,31.308219", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621746021", "distance": [], "navi_poiid": "H51F009013_725128", "entr_location": [], "business_area": "\u6c5f\u6e7e", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/b26ff84798883a48595fdafea0d8af68"}]}, {"id": "B0FFHTZPWT", "name": "\u6768\u6d66\u533a\u56db\u5e73\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u5bc6\u4e91\u793e\u533a\u536b\u751f\u670d\u52a1\u7ad9\u5bb6\u5ead\u533b\u751f\u5de5\u4f5c\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5bc6\u4e91\u8def\u9644\u8fd1", "location": "121.498103,31.278164", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621733912", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u66f2\u9633", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFH0ZS1C", "name": "\u5949\u8d24\u533a\u5357\u6865\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u897f\u6e21\u5206\u4e2d\u5fc3\u897f\u6e21\u53e3\u95e8\u603b\u90e8", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5357\u6865\u9547\u6276\u6e2f\u8def219\u53f7", "location": "121.441275,30.993960", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310120", "adname": "\u5949\u8d24\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621339500", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://aos-cdn-image.amap.com/sns/ugccomment/757428db-4861-4d39-a4db-8de2341b0005.jpg"}, {"title": [], "url": "http://aos-cdn-image.amap.com/sns/ugccomment/9b5cc2e9-d541-43b3-840c-1e9d571a2346.jpg"}]}, {"id": "B0FFH0PWJT", "name": "\u6768\u6d66\u533a\u5e73\u51c9\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u660e\u56ed\u6751\u793e\u533a\u536b\u751f\u670d\u52a1\u7ad9-\u5bb6\u5ead\u533b\u751f\u5de5\u4f5c\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u8bb8\u660c\u8def891\u53f7", "location": "121.520166,31.262337", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621741111", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHEWYFJ", "name": "\u6768\u6d66\u533a\u63a7\u6c5f\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u63a7\u6c5f\u56db\u6751\u793e\u533a\u536b\u751f\u670d\u52a1\u7ad9\u5bb6\u5ead\u533b\u751f\u5de5\u4f5c\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u63a7\u6c5f\u56db\u675128-3", "location": "121.528125,31.284579", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621744200", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u5ef6\u5409", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/3cbd382ca6e34e1f6e3d19dc9e505fb4"}]}, {"id": "B0FFHKRPUH", "name": "\u6768\u6d66\u533a\u4e94\u89d2\u573a\u9547\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u5e02\u5149\u793e\u533a\u536b\u751f\u670d\u52a1\u7ad9\u5bb6\u5ead\u533b\u751f\u5de5\u4f5c\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5e02\u5174\u8def23\u53f7\u9644\u8fd1", "location": "121.517364,31.313799", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621747111", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u6c5f\u6e7e", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFG28UVE", "name": "\u5f90\u6cfe\u9547\u536b\u751f\u9662\u653e\u5c04\u79d1", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5f90\u6c11\u8def1088\u53f7\u5f90\u6cfe\u536b\u751f\u9662", "location": "121.271279,31.175998", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310118", "adname": "\u9752\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621621102", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u5f90\u6cfe", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "2.5", "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B001557OW8", "name": "\u9752\u6d66\u533a\u84b8\u6dc0\u9547\u536b\u751f\u9662\u5de5\u4f1a", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u84b8\u5174\u8def147\u53f7", "location": "121.028277,30.974530", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310118", "adname": "\u9752\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621306220", "distance": [], "navi_poiid": "H51F013009_165", "entr_location": "121.028453,30.974587", "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/3b1e83b061043205f0bdc19c3498f8c8"}]}, {"id": "B0FFH7SVZW", "name": "\u4e0a\u6d77\u5e02\u6d66\u4e1c\u65b0\u533a\u738b\u6e2f\u536b\u751f\u9662\u5065\u5eb7\u6559\u80b2\u5ba4", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5ddd\u6c99\u8def3608\u53f7", "location": "121.688651,31.216995", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621656500", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B00155I189", "name": "\u6caa\u4e1c\u793e\u533a\u5065\u5eb7\u536b\u751f\u7efc\u5408\u670d\u52a1\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u957f\u5c9b\u8def531", "location": "121.580147,31.261990", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621741611", "distance": [], "navi_poiid": "H51F009013_8180", "entr_location": [], "business_area": "\u91d1\u6865", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.8", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/3b0c68b08b07a91d469cf60c7842a998"}]}, {"id": "B001570W17", "name": "\u5b9d\u5c71\u533a\u793e\u533a\u536b\u751f\u670d\u52a1\u4e8b\u52a1\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6708\u660e\u8def158\u53f7", "location": "121.441951,31.391519", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310113", "adname": "\u5b9d\u5c71\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4721036521", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u6768\u884c", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.2", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/6ffad97eb4a0bc34bfe1d6c65840ed4c"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/c83ba3dcbe3b7b9c53a2282e5edbf7fc"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/9034870c4a670373823a05ea87f803a8"}]}, {"id": "B0FFF2BERI", "name": "\u4fbf\u6c11\u793e\u533a\u536b\u751f\u670d\u52a1\u70b9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5ddd\u6c99\u65b0\u9547\u5ddd\u6c99\u8def5022\u53f7", "location": "121.698133,31.192016", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621653502", "distance": [], "navi_poiid": "H51F010014_707930", "entr_location": [], "business_area": "\u5ddd\u6c99", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/3f10e8d5709239752f6d0f20149b502c"}]}, {"id": "B0FFGI0CC1", "name": "\u534e\u6d0b(\u8fce\u535a\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u897f)", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e1c\u4e66\u623f\u8def225-3\u53f7\u9644\u8fd1", "location": "121.534472,31.168608", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621640202", "distance": [], "navi_poiid": "H51F010013_542666", "entr_location": [], "business_area": "\u4e09\u6797\u9547", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/3ced5df1d48a26b0c88d413f9d404014"}]}, {"id": "B0FFHEISJB", "name": "\u745e\u5e74\u5eb7\u5065(\u4e03\u5b9d\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u4e1c\u5357)", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e03\u5b9d\u9547\u4e03\u8398\u8def3333\u53f7\u4e07\u79d1\u57ce\u5e02\u82b1\u56ed6\u533a6\u53f7", "location": "121.343795,31.159876", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310112", "adname": "\u95f5\u884c\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621529701", "distance": [], "navi_poiid": "H51F011011_497246", "entr_location": [], "business_area": "\u4e03\u5b9d", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B00155MUJ7", "name": "\u8679\u53e3\u533a\u793e\u533a\u536b\u751f\u670d\u52a1\u6307\u5bfc\u4e2d\u5fc3\u793e\u533a\u533b\u7597\u6307\u5bfc\u5206\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4fdd\u5b9a\u8def230\u53f7", "location": "121.511503,31.257300", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310109", "adname": "\u8679\u53e3\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621740022", "distance": [], "navi_poiid": "H51F009013_339338", "entr_location": "121.511254,31.257118", "business_area": "\u5317\u5916\u6ee9", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFH1Z3CS", "name": "\u4e0a\u6d77\u5e02\u9ec4\u6d66\u533a\u536b\u751f\u548c\u8ba1\u5212\u751f\u80b2\u59d4\u5458\u4f1a\u793e\u533a\u536b\u751f\u670d\u52a1\u7ba1\u7406\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u590d\u5174\u4e2d\u8def510\u53f72\u697c", "location": "121.471477,31.215713", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310101", "adname": "\u9ec4\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621635722", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHDQXCR", "name": "\u6c11\u661f\u793e\u533a\u536b\u751f\u670d\u52a1\u7ad9\u5bb6\u5ead\u533b\u751f\u5de5\u4f5c\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5ae9\u6c5f\u8def872\u53f7\u6bb7\u884c\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u6c11\u661f\u793e\u533a\u536b\u751f\u670d\u52a1\u7ad9", "location": "121.541156,31.314815", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621747320", "distance": [], "navi_poiid": "H51F009013_343000", "entr_location": [], "business_area": "\u4e2d\u539f", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/b9b03bf37a8519d5c8a7d5816f3a08b7"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/63bc516a94482fa2661e7481884c5811"}]}, {"id": "B0FFGQIA3I", "name": "\u5e02\u5149\u56db\u6751\u793e\u533a\u536b\u751f\u670d\u52a1\u7ad9\u5bb6\u5ead\u533b\u751f\u5de5\u4f5c\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5e02\u5149\u56db\u67512-5\u8857\u574a", "location": "121.535986,31.319707", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621748212", "distance": [], "navi_poiid": "H51F009013_489902", "entr_location": [], "business_area": "\u4e2d\u539f", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFGBBNWW", "name": "\u5434\u6cfe\u793e\u533a\u536b\u751f\u670d\u52a1\u70b9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5434\u6cfe\u9547\u5251\u5ddd\u8def100\u5f0443\u53f7", "location": "121.472616,31.044462", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310112", "adname": "\u95f5\u884c\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621435712", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u5434\u6cfe", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B00155BYP6", "name": "\u6768\u6d66\u533a\u6b8b\u75be\u4eba\u5eb7\u590d\u4e2d\u5fc3\u5b9a\u6d77\u5206\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u7231\u56fd\u8def77\u53f7\u5b9a\u6d77\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc32\u697c", "location": "121.552941,31.278440", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621743410", "distance": [], "navi_poiid": "H51F009013_17254", "entr_location": "121.552544,31.278082", "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/80dfce468951966e61731f0b56e42ca5"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/460f6566aa4febbbd87037da90653fae"}]}, {"id": "B00156O7TD", "name": "\u5eb7\u5065\u793e\u533a\u5e02\u6c11\u667a\u6167\u533b\u517b\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6c5f\u5b89\u8def88\u53f7(\u8fd1\u767e\u82b1\u8857)\u5eb7\u5065\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc31\u697c", "location": "121.414784,31.148361", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310104", "adname": "\u5f90\u6c47\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621537320", "distance": [], "navi_poiid": "H51F011012_346693", "entr_location": [], "business_area": "\u5eb7\u5065", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/3fc8d003c9539ffc09e849222f895372"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/f06c2392672a518c0492ef75cc223156"}]}, {"id": "B0FFH4N7G3", "name": "\u793e\u533a\u536b\u751f\u7ba1\u7406\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e39\u5df4\u8def1628\u53f72\u697c", "location": "121.393940,31.237776", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310107", "adname": "\u666e\u9640\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621638111", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u957f\u5f81", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B001570W2K", "name": "\u53cc\u5c71\u793e\u533a\u536b\u751f\u670d\u52a1\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u53cc\u5c71\u8def161\u5f0417\u53f7\u7532", "location": "121.423670,31.262005", "tel": "021-56061031", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310107", "adname": "\u666e\u9640\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621731312", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/c00cfa5821fda2ec1d1314d8ac4f32d5"}]}, {"id": "B0FFGDXCTL", "name": "\u4e0a\u6d77\u5065\u5eb7\u533b\u5b66\u9662\u536b\u751f\u4fdd\u5065\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6885\u9647\u8def21\u53f7", "location": "121.427635,31.140713", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310104", "adname": "\u5f90\u6c47\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621536420", "distance": [], "navi_poiid": "H51F011012_369374", "entr_location": [], "business_area": "\u6885\u9647", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B001536893", "name": "\u4e0a\u6d77\u5e02\u7cbe\u795e\u536b\u751f\u4e2d\u5fc3(\u5b9b\u5e73\u5357\u8def)", "tag": "\u7cbe\u795e\u75c5\u79d1", "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u603b\u9662:\u4e0a\u6d77\u5e02\u5f90\u6c47\u533a\u5b9b\u5e73\u5357\u8def600\u53f7,\u5206\u9662:\u4e0a\u6d77\u5e02\u95f5\u884c\u533a\u6caa\u95f5\u8def3210\u53f7", "location": "121.448062,31.187294", "tel": "021-64387250", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310104", "adname": "\u5f90\u6c47\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621632512", "distance": [], "navi_poiid": "H51F010012_111502;65449", "entr_location": "121.449205,31.187801", "business_area": "\u9f99\u534e", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.0", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/08610bba7077088a1e0f75d4b0c5ffea"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/f681f6e0787b485ab9eaf3ace0dd634a"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/4a9f16eb435af55d3e4aa352522d7381"}]}, {"id": "B0FFFA66R8", "name": "\u4eba\u4e50\u793e\u533a\u536b\u751f\u670d\u52a1\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4eba\u4e50\u4e8c\u675168-1\u53f7", "location": "121.224602,31.011869", "tel": "021-67721349", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310117", "adname": "\u677e\u6c5f\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621411712", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u4e2d\u5c71", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.2", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/a2a45764205516ad1e3c06307841c1f5"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/c07921312933a550b2ee9e5f5f3c705e"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/68a143159a9dc4160fbe9bb4a82850c4"}]}, {"id": "B0FFH0RY5I", "name": "\u513f\u7ae5\u5eb7\u590d\u611f\u89c9\u7edf\u5408\u5ba4", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u53e4\u7f8e\u8857\u9053\u9f99\u8317\u8def668\u53f7\u53e4\u7f8e\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc34\u697c", "location": "121.388548,31.133740", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310112", "adname": "\u95f5\u884c\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621536100", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u6885\u9647", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B00155GC5A", "name": "\u6dee\u6d77\u4e2d\u8def\u8857\u9053\u793e\u533a\u6b8b\u75be\u4eba\u5eb7\u590d\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6de1\u6c34\u8def285\u53f7\u6dee\u6d77\u4e2d\u8def\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u4e09\u697c", "location": "121.473820,31.214770", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310101", "adname": "\u9ec4\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621635722", "distance": [], "navi_poiid": "H51F010012_84995", "entr_location": "121.473519,31.214834", "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/13a8a5ef49849a597898f447785190b7"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/a8fe14c72c5c4673067c4631c33d662a"}]}, {"id": "B00155QEMQ", "name": "\u5d07\u660e\u533a\u516c\u5171\u536b\u751f\u670d\u52a1\u5927\u5385", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e00\u6c5f\u5c71\u8def\u4e0e\u5d07\u660e\u4e1c\u95e8\u8def\u4ea4\u53c9\u53e3\u4e1c\u535750\u7c73", "location": "121.404006,31.625578", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310151", "adname": "\u5d07\u660e\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4721335200", "distance": [], "navi_poiid": "H51F005012_4331", "entr_location": "121.403654,31.625553", "business_area": "\u57ce\u6865", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/c811e3a688f2e8fd6f8f3b45fd824c0f"}]}, {"id": "B0FFG0PR4W", "name": "\u9752\u6d66\u533a\u7cbe\u795e\u536b\u751f\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u91d1\u6cfd\u9547\u7ec3\u897f\u516c\u8def4865\u53f7", "location": "120.960359,31.072919", "tel": "021-59207615", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310118", "adname": "\u9752\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4620478622", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B00154DOPH", "name": "\u4e0a\u6d77\u56fd\u9645\u65c5\u884c\u536b\u751f\u4fdd\u5065\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u91d1\u6d5c\u8def15\u53f7(\u8fd1\u54c8\u5bc6\u8def)", "location": "121.364309,31.197927", "tel": "021-62686171;021-62688851", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310105", "adname": "\u957f\u5b81\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621623920", "distance": [], "navi_poiid": "H51F010011_4376", "entr_location": "121.364506,31.198481", "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.0", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/70fb05db6c8fb5496ad17e50a63d0f8b"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/c1480210bad3435b23cf04613585a6d4"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/a0b03aa94a83e89891b9a326a9c270d2"}]}, {"id": "B00156GMGC", "name": "\u9646\u5bb6\u5634\u8857\u9053\u5fc3\u7406\u54a8\u8be2\u670d\u52a1\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e1c\u660c\u65b0\u675125\u53f7101-107\u5ba4(\u4e1c\u660c\u8def\u6d66\u4e1c\u5357\u8def)", "location": "121.512503,31.236465", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621648110", "distance": [], "navi_poiid": "H51F010013_492669", "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/7e9e3b7f2adc9c8a606dd5b548671968"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/571876e07ac63a0cf2ed86d1"}]}, {"id": "B00156GXCI", "name": "\u4e0a\u6d77\u5e02\u5b9d\u5c71\u533a\u516c\u5171\u536b\u751f\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5916\u73af\u4ee5\u5916\u6708\u660e\u8def158\u53f7", "location": "121.441905,31.391487", "tel": "021-33796939;021-33796760", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310113", "adname": "\u5b9d\u5c71\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4721036521", "distance": [], "navi_poiid": "H51F008012_369920", "entr_location": [], "business_area": "\u6768\u884c", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.5", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/4c6be25adffe87957af24cd117a1233f"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/5278c6364d197a3b1a42e9850b0cb003"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/5933d502f06b6714fedacf7112d1a96f"}]}, {"id": "B00156ZGG6", "name": "\u6768\u6d66\u533a\u516c\u5171\u536b\u751f\u4e34\u5e8a\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u677e\u82b1\u6c5f\u8def3\u53f7", "location": "121.544524,31.297675", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621745321", "distance": [], "navi_poiid": "H51F009013_426965", "entr_location": [], "business_area": "\u5ef6\u5409", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "2.1", "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B001570WNS", "name": "\u91d1\u5c71\u533a\u7cbe\u795e\u536b\u751f\u4e2d\u5fc3-\u4f4f\u9662\u90e8", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u91d1\u77f3\u5357\u8def1949\u53f7", "location": "121.250529,30.773001", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310116", "adname": "\u91d1\u5c71\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621122020", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/84917978a83b4570cc3ac37646e380c9"}]}, {"id": "B00156NY3G", "name": "\u6768\u6d66\u533a\u6b8b\u75be\u4eba\u5eb7\u590d\u4e2d\u5fc3\u6c5f\u6d66\u5206\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u63a7\u6c5f\u8def\u8bb8\u660c\u8def1482\u53f7", "location": "121.513511,31.271178", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621742110", "distance": [], "navi_poiid": "H51F009013_414954", "entr_location": "121.513511,31.270883", "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "2.3", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/bb675dc8009010cbdc97634cc858bb8c"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/a0dd199b902d2fd7f5bc91f3f9272135"}]}, {"id": "B00157GQBY", "name": "\u4e0a\u6d77\u5e02\u7cbe\u795e\u536b\u751f\u4e2d\u5fc3-\u4f4f\u9662\u5927\u697c", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5b9b\u5e73\u5357\u8def600\u53f7", "location": "121.448010,31.187179", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310104", "adname": "\u5f90\u6c47\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621632512", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u9f99\u534e", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B001570WNI", "name": "\u677e\u6c5f\u533a\u7cbe\u795e\u536b\u751f\u4e2d\u5fc3-\u95e8\u8bca", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u77f3\u6e56\u8361\u9547\u5854\u6c47\u8def209\u53f7", "location": "121.179296,30.968263", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310117", "adname": "\u677e\u6c5f\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621316401", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/4ffd6cc1f4148ff520fa72552a76fb48"}]}, {"id": "B0FFGQDFS7", "name": "\u56fd\u548c\u793e\u533a\u536b\u751f\u670d\u52a1\u7ad9\u5bb6\u5ead\u533b\u751f\u5de5\u4f5c\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u56fd\u548c\u8def1045-5\u53f7", "location": "121.530167,31.318058", "tel": "021-65029728", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621748201", "distance": [], "navi_poiid": "H51F009013_342919", "entr_location": [], "business_area": "\u4e2d\u539f", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.2", "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B00155L4KZ", "name": "\u5b9d\u5c71\u533a\u5987\u5e7c\u536b\u751f\u4fdd\u5065\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6c34\u4ea7\u8def1138\u53f7", "location": "121.491535,31.383687", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310113", "adname": "\u5b9d\u5c71\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4721036900", "distance": [], "navi_poiid": "H51F008012_106767", "entr_location": [], "business_area": "\u5434\u6dde", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/f80df428351bcb0258cda4d6017dd891"}]}, {"id": "B0FFH82MMS", "name": "\u4e0a\u6d77\u56fd\u9645\u65c5\u884c\u536b\u751f\u4fdd\u5065\u4e2d\u5fc3(\u6d66\u4e1c\u5206\u4e2d\u5fc3)", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u91d1\u6865\u7ecf\u6d4e\u6280\u672f\u5f00\u53d1\u533a\u91d1\u6865\u8def2090\u53f7", "location": "121.599223,31.240635", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621648722", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u91d1\u6865", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/1164399d6463b6c79e73d2ac28fe2445"}]}, {"id": "B0FFH0RY5I", "name": "\u513f\u7ae5\u5eb7\u590d\u611f\u89c9\u7edf\u5408\u5ba4", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u53e4\u7f8e\u8857\u9053\u9f99\u8317\u8def668\u53f7\u53e4\u7f8e\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc34\u697c", "location": "121.388548,31.133740", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310112", "adname": "\u95f5\u884c\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621536100", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u6885\u9647", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B00155GC5A", "name": "\u6dee\u6d77\u4e2d\u8def\u8857\u9053\u793e\u533a\u6b8b\u75be\u4eba\u5eb7\u590d\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6de1\u6c34\u8def285\u53f7\u6dee\u6d77\u4e2d\u8def\u8857\u9053\u793e\u533a\u536b\u751f\u670d\u52a1\u4e2d\u5fc3\u4e09\u697c", "location": "121.473820,31.214770", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310101", "adname": "\u9ec4\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621635722", "distance": [], "navi_poiid": "H51F010012_84995", "entr_location": "121.473519,31.214834", "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/13a8a5ef49849a597898f447785190b7"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/a8fe14c72c5c4673067c4631c33d662a"}]}, {"id": "B00155QEMQ", "name": "\u5d07\u660e\u533a\u516c\u5171\u536b\u751f\u670d\u52a1\u5927\u5385", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e00\u6c5f\u5c71\u8def\u4e0e\u5d07\u660e\u4e1c\u95e8\u8def\u4ea4\u53c9\u53e3\u4e1c\u535750\u7c73", "location": "121.404006,31.625578", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310151", "adname": "\u5d07\u660e\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4721335200", "distance": [], "navi_poiid": "H51F005012_4331", "entr_location": "121.403654,31.625553", "business_area": "\u57ce\u6865", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/c811e3a688f2e8fd6f8f3b45fd824c0f"}]}, {"id": "B0FFG0PR4W", "name": "\u9752\u6d66\u533a\u7cbe\u795e\u536b\u751f\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u91d1\u6cfd\u9547\u7ec3\u897f\u516c\u8def4865\u53f7", "location": "120.960359,31.072919", "tel": "021-59207615", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310118", "adname": "\u9752\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4620478622", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B00154DOPH", "name": "\u4e0a\u6d77\u56fd\u9645\u65c5\u884c\u536b\u751f\u4fdd\u5065\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u91d1\u6d5c\u8def15\u53f7(\u8fd1\u54c8\u5bc6\u8def)", "location": "121.364309,31.197927", "tel": "021-62686171;021-62688851", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310105", "adname": "\u957f\u5b81\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621623920", "distance": [], "navi_poiid": "H51F010011_4376", "entr_location": "121.364506,31.198481", "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.0", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/70fb05db6c8fb5496ad17e50a63d0f8b"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/c1480210bad3435b23cf04613585a6d4"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/a0b03aa94a83e89891b9a326a9c270d2"}]}, {"id": "B00156GMGC", "name": "\u9646\u5bb6\u5634\u8857\u9053\u5fc3\u7406\u54a8\u8be2\u670d\u52a1\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e1c\u660c\u65b0\u675125\u53f7101-107\u5ba4(\u4e1c\u660c\u8def\u6d66\u4e1c\u5357\u8def)", "location": "121.512503,31.236465", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621648110", "distance": [], "navi_poiid": "H51F010013_492669", "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/7e9e3b7f2adc9c8a606dd5b548671968"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/571876e07ac63a0cf2ed86d1"}]}, {"id": "B00156GXCI", "name": "\u4e0a\u6d77\u5e02\u5b9d\u5c71\u533a\u516c\u5171\u536b\u751f\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5916\u73af\u4ee5\u5916\u6708\u660e\u8def158\u53f7", "location": "121.441905,31.391487", "tel": "021-33796939;021-33796760", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310113", "adname": "\u5b9d\u5c71\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4721036521", "distance": [], "navi_poiid": "H51F008012_369920", "entr_location": [], "business_area": "\u6768\u884c", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.5", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/4c6be25adffe87957af24cd117a1233f"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/5278c6364d197a3b1a42e9850b0cb003"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/5933d502f06b6714fedacf7112d1a96f"}]}, {"id": "B00156ZGG6", "name": "\u6768\u6d66\u533a\u516c\u5171\u536b\u751f\u4e34\u5e8a\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u677e\u82b1\u6c5f\u8def3\u53f7", "location": "121.544524,31.297675", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621745321", "distance": [], "navi_poiid": "H51F009013_426965", "entr_location": [], "business_area": "\u5ef6\u5409", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "2.1", "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B001570WNS", "name": "\u91d1\u5c71\u533a\u7cbe\u795e\u536b\u751f\u4e2d\u5fc3-\u4f4f\u9662\u90e8", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u91d1\u77f3\u5357\u8def1949\u53f7", "location": "121.250529,30.773001", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310116", "adname": "\u91d1\u5c71\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621122020", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/84917978a83b4570cc3ac37646e380c9"}]}, {"id": "B00156NY3G", "name": "\u6768\u6d66\u533a\u6b8b\u75be\u4eba\u5eb7\u590d\u4e2d\u5fc3\u6c5f\u6d66\u5206\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u63a7\u6c5f\u8def\u8bb8\u660c\u8def1482\u53f7", "location": "121.513511,31.271178", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621742110", "distance": [], "navi_poiid": "H51F009013_414954", "entr_location": "121.513511,31.270883", "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "2.3", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/bb675dc8009010cbdc97634cc858bb8c"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/a0dd199b902d2fd7f5bc91f3f9272135"}]}, {"id": "B00157GQBY", "name": "\u4e0a\u6d77\u5e02\u7cbe\u795e\u536b\u751f\u4e2d\u5fc3-\u4f4f\u9662\u5927\u697c", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5b9b\u5e73\u5357\u8def600\u53f7", "location": "121.448010,31.187179", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310104", "adname": "\u5f90\u6c47\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621632512", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u9f99\u534e", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B001570WNI", "name": "\u677e\u6c5f\u533a\u7cbe\u795e\u536b\u751f\u4e2d\u5fc3-\u95e8\u8bca", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u77f3\u6e56\u8361\u9547\u5854\u6c47\u8def209\u53f7", "location": "121.179296,30.968263", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310117", "adname": "\u677e\u6c5f\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621316401", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/4ffd6cc1f4148ff520fa72552a76fb48"}]}, {"id": "B0FFGQDFS7", "name": "\u56fd\u548c\u793e\u533a\u536b\u751f\u670d\u52a1\u7ad9\u5bb6\u5ead\u533b\u751f\u5de5\u4f5c\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u56fd\u548c\u8def1045-5\u53f7", "location": "121.530167,31.318058", "tel": "021-65029728", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621748201", "distance": [], "navi_poiid": "H51F009013_342919", "entr_location": [], "business_area": "\u4e2d\u539f", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.2", "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFH7FQFG", "name": "\u6d63\u6c99\u793e\u533a\u536b\u751f\u670d\u52a1\u7ad9\u5bb6\u5ead\u533b\u9662\u5de5\u4f5c\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u56fd\u987a\u4e1c\u8def36\u53f7", "location": "121.538387,31.302858", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621746310", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B00155L4KZ", "name": "\u5b9d\u5c71\u533a\u5987\u5e7c\u536b\u751f\u4fdd\u5065\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6c34\u4ea7\u8def1138\u53f7", "location": "121.491535,31.383687", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310113", "adname": "\u5b9d\u5c71\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4721036900", "distance": [], "navi_poiid": "H51F008012_106767", "entr_location": [], "business_area": "\u5434\u6dde", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/f80df428351bcb0258cda4d6017dd891"}]}, {"id": "B0FFH82MMS", "name": "\u4e0a\u6d77\u56fd\u9645\u65c5\u884c\u536b\u751f\u4fdd\u5065\u4e2d\u5fc3(\u6d66\u4e1c\u5206\u4e2d\u5fc3)", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u91d1\u6865\u7ecf\u6d4e\u6280\u672f\u5f00\u53d1\u533a\u91d1\u6865\u8def2090\u53f7", "location": "121.599223,31.240635", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621648722", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u91d1\u6865", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/1164399d6463b6c79e73d2ac28fe2445"}]}, {"id": "B0FFF04IIB", "name": "\u5f6d\u6d66\u5730\u6bb5\u533b\u9662\u5e73\u987a\u8def790\u5f04\u536b\u751f\u670d\u52a1\u70b9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5e73\u987a\u8def790\u5f045\u53f7101\u5ba4", "location": "121.453055,31.317054", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310106", "adname": "\u9759\u5b89\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621738600", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.5", "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHTMC62", "name": "\u90fd\u5e02\u5ead\u9662\u5c45\u59d4\u793e\u533a\u536b\u751f\u7efc\u5408\u670d\u52a1\u70b9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u9f50\u6cb3\u8def612\u53f7\u9644\u8fd1", "location": "121.507060,31.179646", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621641011", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u660c\u91cc", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHQFEDN", "name": "\u6d66\u4e1c\u65b0\u533a\u6ce5\u57ce\u793e\u533a\u536b\u751f\u4e2d\u5fc3-\u4f4f\u9662\u90e8", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5357\u82a6\u516c\u8def1843\u53f7\u5149\u660e\u4e2d\u533b\u533b\u9662\u6ce5\u57ce\u5206\u9662", "location": "121.829789,30.899816", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621267621", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFH1YRTI", "name": "\u4e0a\u6d77\u5e02\u7cbe\u795e\u536b\u751f\u4e2d\u5fc3\u513f\u7ae5\u9752\u5c11\u5e74\u7cbe\u795e\u79d1", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5b9b\u5e73\u5357\u8def600\u53f7(\u96f6\u9675\u8def\u5b9b\u5e73\u5357\u8def)", "location": "121.449104,31.187927", "tel": "021-64387250", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310104", "adname": "\u5f90\u6c47\u533a", "importance": [], "shopid": [], "shopinfo": [], "poiweight": [], "gridcode": "4621632512", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u9f99\u534e", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFHGJNG6", "name": "\u6d66\u4e1c\u65b0\u533a\u7cbe\u795e\u536b\u751f\u4e2d\u5fc3\u7cbe\u795e\u79d1\u5eb7\u590d\u8054\u5408\u75c5\u623f", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u65b0\u96c5\u8def\u4e0e\u8679\u76db\u8def\u4ea4\u53c9\u53e3\u897f\u5317100\u7c73", "location": "121.683050,31.236658", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621658411", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/8be5cfc8448b7ecf0bfa440ce0a05ad6"}]}, {"id": "B0FFF2LK8U", "name": "\u4e0a\u6d77\u5e02\u7ea2\u5341\u5b57\u516c\u5171\u536b\u751f\u4e34\u5e8a\u533b\u7597\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u540c\u5fc3\u8def921\u53f7", "location": "121.470084,31.272684", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310109", "adname": "\u8679\u53e3\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621732721", "distance": [], "navi_poiid": "H51F009012_492776;1130962", "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/56d9003622db3588335566de46cea7c5"}]}, {"id": "B0FFGLEXZK", "name": "\u590d\u65e6\u5927\u5b66\u9644\u5c5e\u516c\u5171\u536b\u751f\u4e34\u5e8a\u4e2d\u5fc3-\u6025\u8bca", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u540c\u5fc3\u8def921\u53f7\u4e0a\u6d77\u5e02\u590d\u65e6\u5927\u5b66\u9644\u5c5e\u516c\u5171\u536b\u751f\u4e34\u5e8a\u4e2d\u5fc3\u5185", "location": "121.470194,31.272826", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310109", "adname": "\u8679\u53e3\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621732721", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFG95R96", "name": "\u4e0a\u6d77\u5e02\u516c\u5171\u536b\u751f\u4e34\u5e8a\u4e2d\u5fc3-\u75c5\u623f\u5927\u697cB", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6f15\u5eca\u516c\u8def2901\u53f7", "location": "121.339370,30.789298", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310116", "adname": "\u91d1\u5c71\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621124720", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/e261b4781204a1e806e7ed36f73c91ee"}]}, {"id": "B0FFG95BW5", "name": "\u590d\u65e6\u5927\u5b66\u9644\u5c5e\u4e2d\u5c71\u533b\u9662(S)\u4e0a\u6d77\u5e02\u516c\u5171\u536b\u751f\u4e34\u5e8a\u4e2d\u5fc3\u8840\u6db2\u51c0\u5316\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u540c\u5fc3\u8def931\u53f7", "location": "121.470122,31.272614", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310109", "adname": "\u8679\u53e3\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621732721", "distance": [], "navi_poiid": "H51F009012_564104", "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": "\u4e2d\u5c71\u533b\u9662(S)\u4e0a\u6d77\u5e02\u516c\u5171\u536b\u751f\u4e34\u5e8a\u4e2d\u5fc3\u8840\u6db2\u51c0\u5316\u4e2d\u5fc3", "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/6a6d364667ec167dfb7057010b28d3ca"}]}, {"id": "B0FFFER30G", "name": "\u4e0a\u6d77\u5e02\u590d\u65e6\u5927\u5b66\u9644\u5c5e\u516c\u5171\u536b\u751f\u4e34\u5e8a\u4e2d\u5fc3-\u547c\u5438\u79d1\u95e8\u8bca", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u540c\u5fc3\u8def921\u53f7", "location": "121.470700,31.273440", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310109", "adname": "\u8679\u53e3\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621732721", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFGE9124", "name": "\u6253\u94c1\u6865\u4e2d\u5fc3\u536b\u751f\u5ba4\u5065\u5eb7\u54a8\u8be2\u70b9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u65b9\u6cd7\u516c\u8def99\u5f042\u53f7", "location": "121.273037,31.128674", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310117", "adname": "\u677e\u6c5f\u533a", "importance": [], "shopid": [], "shopinfo": [], "poiweight": [], "gridcode": "4621525112", "distance": [], "navi_poiid": "H51F011011_320917", "entr_location": "121.273086,31.128361", "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFG2VVIA", "name": "\u9759\u5b89\u533a\u66f9\u5bb6\u6e21\u8857\u9053\u5065\u5eb7\u9a7f\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u660c\u5e73\u8def900-2\u53f7", "location": "121.438323,31.233194", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310106", "adname": "\u9759\u5b89\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621637520", "distance": [], "navi_poiid": "H51F010012_573686", "entr_location": [], "business_area": "\u66f9\u5bb6\u6e21", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B0FFG847YC", "name": "\u7231\u5fc3\u732e\u8840\u5c4b(\u6d66\u5efa\u8def)", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6d66\u5efa\u8def131\u53f71", "location": "121.521452,31.208810", "tel": "021-58891380", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310115", "adname": "\u6d66\u4e1c\u65b0\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621645102", "distance": [], "navi_poiid": "H51F010013_521156", "entr_location": "121.521405,31.208676", "business_area": "\u5858\u6865", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.5", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/bc7d72b8cb9ea0912e54c0e780e104df"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/55acc376a310a084c90f7a47"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/55acc376a310a084c90f7a49"}]}, {"id": "B0FFHJZRVI", "name": "\u82b7\u6c5f\u897f\u8def\u5065\u5eb7\u751f\u6d3b\u9986", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u82b7\u6c5f\u897f\u8def335\u53f7", "location": "121.454803,31.256203", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310106", "adname": "\u9759\u5b89\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621730621", "distance": [], "navi_poiid": "H51F009012_1119537", "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/03ff9a161d59b6557645a0f235632f95"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/3af7b691b9c6173388472ef6ac30e50e"}]}, {"id": "B0FFH106TO", "name": "\u5bb6\u5ead\u533b\u751f\u5de5\u4f5c\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u653f\u7acb\u8def859\u53f7", "location": "121.491887,31.308189", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310110", "adname": "\u6768\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621736921", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u6c5f\u6e7e", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/4470c84caabe0d0dc12024f30924dc65"}]}, {"id": "B0FFHH54KI", "name": "\u4e0a\u6d77\u5fc3\u7533\u5eb7\u590d\u4e2d\u5fc3", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5b9b\u5e73\u5357\u8def600\u53f7\u4e0a\u6d77\u5e02\u7cbe\u795e\u536b\u751f\u4e2d\u5fc36\u53f7\u697c1\u697c", "location": "121.448998,31.188067", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310104", "adname": "\u5f90\u6c47\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621632512", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": "\u9f99\u534e", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/60c6c72386c95c455218d315814a0f32"}]}, {"id": "B00155F6IE", "name": "\u5f90\u6c47\u533a\u9f99\u534e\u8857\u9053\u793e\u533a\u6b8b\u75be\u4eba\u5eb7\u590d\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u9f99\u534e\u897f\u8def249-251\u53f7", "location": "121.446815,31.173442", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310104", "adname": "\u5f90\u6c47\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621630522", "distance": [], "navi_poiid": "H51F010012_66251", "entr_location": [], "business_area": "\u9f99\u534e", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B00155C7ZJ", "name": "\u5f6d\u6d66\u65b0\u6751\u8857\u9053\u6b8b\u75be\u4eba\u793e\u533a\u5eb7\u590d\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u5e73\u987a\u8def15\u53f7", "location": "121.452882,31.307960", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310106", "adname": "\u9759\u5b89\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621736620", "distance": [], "navi_poiid": "H51F009012_849", "entr_location": "121.452440,31.308040", "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": []}, {"id": "B00155GG0H", "name": "\u5f90\u6c47\u533a\u51cc\u4e91\u8857\u9053\u793e\u533a\u6b8b\u75be\u4eba\u5eb7\u590d\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u51cc\u4e91\u8def99\u53f7", "location": "121.421676,31.132190", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310104", "adname": "\u5f90\u6c47\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621535322", "distance": [], "navi_poiid": "H51F011012_284056", "entr_location": [], "business_area": "\u6885\u9647", "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/7ff6a477850d6bedb8cc0cfeb098ef5f"}]}, {"id": "B001572JLC", "name": "\u9752\u6d66\u533a\u9ebb\u75af\u75c5\u9662", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u6c99\u57ed\u6d5c\u8def\u53e3\u536b\u751f\u5c40\u7efc\u5408\u697c(\u9752\u5b89\u8def\u6c99\u57ed\u6d5c\u8def)", "location": "121.120785,31.153394", "tel": "021-69716095", "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310118", "adname": "\u9752\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621508911", "distance": [], "navi_poiid": [], "entr_location": [], "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": "3.5", "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/c2d2cafdc4f6691d97c3cd6cdc97d247"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/5cc05e2a7f260d029c88cd5ed6752b06"}, {"title": [], "url": "http://store.is.autonavi.com/showpic/401e4dca045a10bf3521cff5cfd5942d"}]}, {"id": "B00155HXGM", "name": "\u6253\u6d66\u6865\u8857\u9053\u6b8b\u75be\u4eba\u793e\u533a\u5eb7\u590d\u7ad9", "tag": [], "type": "\u533b\u7597\u4fdd\u5065\u670d\u52a1;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240;\u533b\u7597\u4fdd\u5065\u670d\u52a1\u573a\u6240", "typecode": "090000", "biz_type": [], "address": "\u4e3d\u56ed\u8def712-1\u53f7", "location": "121.478854,31.206662", "tel": [], "postcode": [], "website": [], "email": [], "pcode": "310000", "pname": "\u4e0a\u6d77\u5e02", "citycode": "021", "cityname": "\u4e0a\u6d77\u5e02", "adcode": "310101", "adname": "\u9ec4\u6d66\u533a", "importance": [], "shopid": [], "shopinfo": "0", "poiweight": [], "gridcode": "4621634820", "distance": [], "navi_poiid": "H51F010012_60522", "entr_location": "121.478748,31.206999", "business_area": [], "exit_location": [], "match": "0", "recommend": "0", "timestamp": [], "alias": [], "indoor_map": "0", "indoor_data": {"cpid": [], "floor": [], "truefloor": [], "cmsid": []}, "groupbuy_num": "0", "discount_num": "0", "biz_ext": {"rating": [], "cost": []}, "event": [], "children": [], "photos": [{"title": [], "url": "http://store.is.autonavi.com/showpic/92d36ab941c212485aa36ecf66e8338f"}]}] -------------------------------------------------------------------------------- /上海卫生服务中心-高德地图2017-04-05.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyu8969/python-to-amap/16fedf19a76cf50747f4374af3bc803b4f82a0a1/上海卫生服务中心-高德地图2017-04-05.xls -------------------------------------------------------------------------------- /上海卫生服务中心-高德地图2017-04-06.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyu8969/python-to-amap/16fedf19a76cf50747f4374af3bc803b4f82a0a1/上海卫生服务中心-高德地图2017-04-06.xls --------------------------------------------------------------------------------