package com.jiuqi.mobile.lbs.intf.pub.baidu.geocoding; public class BaiduGisGeocoding { /** * {"status":0,"result":{"location":{"lng":113.6513411083,"lat": * 34.803035938934 * },"formatted_address":"河南省郑州市金水区天明路72号","business":"东风路,群办路,丰庆路" * ,"addressComponent" * :{"city":"郑州市","district":"金水区","province":"河南省","street" * :"天明路","street_number" * :"72号"},"pois":[{"addr":"河南省郑州市金水区天明路70号","cp":"NavInfo" * ,"distance":"94","name" * :"天伦·锦城","poiType":"地产小区","point":{"x":113.6513314066 * ,"y":34.802333166903} * ,"tel":"","uid":"7a550d7f12d7627202294fa3","zip":""}, * {"addr":"河南省郑州市金水区天明路74号" * ,"cp":"NavInfo","distance":"119","name":"和家公寓","poiType" * :"地产小区","point":{"x":113.6502893722,"y":34.803222375544},"tel":"","uid": * "4f88fbdb00677b3cea56fa5c" * ,"zip":""},{"addr":"河南省郑州市金水区丰庆路9号","cp":"NavInfo" * ,"distance":"330","name" * :"海通园","poiType":"地产小区","point":{"x":113.65423293339 * ,"y":34.802496189212}, * "tel":"","uid":"7cd0301a8766e1c926e0a02e","zip":""}, * {"addr":"河南省郑州市金水区群办路" * ,"cp":"NavInfo","distance":"375","name":"丽江·水花园","poiType" * :"地产小区","point":{"x":113.64838496452,"y":34.801703304925},"tel":"","uid": * "90c0a19d135f7716b020a8e1" * ,"zip":""},{"addr":"河南省郑州市金水区天明路","cp":"NavInfo" * ,"distance":"576","name":"绿荫公园" * ,"poiType":"旅游景点","point":{"x":113.64939106669 * ,"y":34.806993994583},"tel": * "","uid":"3757eb2f408654060aa8d480","zip":""}, * {"addr":"河南省郑州市金水区天明路72号","cp" * :"NavInfo","distance":"400","name":"金阳光居易","poiType" * :"地产小区","point":{"x":113.65243632237 * ,"y":34.800206436976},"tel":"","uid":"91767c8d726adc88a3acc4af" * ,"zip":""}, * {"addr":"河南省郑州市金水区天明路71号","cp":"NavInfo","distance":"398","name" * :"天明家园","poiType" * :"地产小区","point":{"x":113.65266988181,"y":34.800295360591} * ,"tel":"","uid":"5d1e289c74fd59214f3a59e4" * ,"zip":""},{"addr":"河南省郑州市金水区东风路36号" * ,"cp":"NavInfo","distance":"354","name" * :"中国农业银行东风路支行","poiType":"金融","point" * :{"x":113.6516907288,"y":34.80564541996 * },"tel":"","uid":"5e9bd5e3a59333554351c02d" * ,"zip":""},{"addr":"河南省郑州市金水区东风路13号" * ,"cp":"NavInfo","distance":"418","name" * :"天明森林国际公寓","poiType":"地产小区","point" * :{"x":113.65167276269,"y":34.80612705631 * },"tel":"","uid":"95c18c3b9715e5650389721c" * ,"zip":""},{"addr":"河南省郑州市金水区东风路38号" * ,"cp":"NavInfo","distance":"497","name" * :"天旺广场","poiType":"购物","point":{"x" * :113.64697462487,"y":34.803837405857},"tel" * :"","uid":"55c57ffe642893beafb22a62","zip":""}],"cityCode":268}} */ private int status; private GeocodingResult result; public int getStatus() { return status; } public void setStatus(int status) { this.status = status; } public GeocodingResult getResult() { return result; } public void setResult(GeocodingResult result) { this.result = result; } }