想做个微信小工具方便自己查找东西,通过上传经纬度即可搜索周边,例如ATM 餐馆之类的
之前接触的爱帮有这个接口,百度的也有.我写的是爱帮的,
/** * WxDaoImpl * * @author xuyw * @email [email protected] * @date 2014-06-22 */
-
说明
商户搜索接口根据指定的城市、地址(或坐标)和关键词等参数查询满足条件的商户,返回商户列表。如果不指定地址(或坐标),则在全市搜索。若不指定关键字,则返回地址周边的商户。地址(或坐标)和关键字必须至少有一个。
最多返回前300个满足指定搜索条件的商户。
-
形式
http://openapi.aibang.com/search
参数说明
参数 类型 是否可选 意义 备注 city string 否 城市 a string 是 地址 地址分为区域地址(如海淀区)和点地址(如安全大厦),区域地址的查询不受距离参数as的限制;若是点地址,则以此作为中心点,以as为半径的区域内搜索 lng float 是 经度 地址的经度 lat float 是 纬度 地址的纬度 q string 是 关键字 如:餐馆、ktv、火车站、北京饭店 cate string 是 类别 限于爱帮类别列表 rc int 是 排序方法 1:默认排序,根据综合因素排序; 2:按距离排序; 3:按可信度排序; 5:按热度排序; 6:按照星级排序; 注:由于爱帮会根据查询分析将更匹配和准确的结果放在前面,以上排序仅作参考使用 as int 是 距离限制 0:无限制,默认; 负数:建议限制距离为其绝对值,但搜索引擎若认为结果不好则扩展至全市搜索; 正数:强制在此距离范围内 from int 是 返回结果在总结果的起始位置 最小为1,默认为1,(最多为300) to int 是 返回结果在总结果中的结束位置 默认from+9,(最多为300)。结果为from和to组成闭区间[from, to] 附加说明:参数中地址a和经纬度lng|lat都可以指定中心点,如果只指定了a而没有lng|lat,则在a指定的地址范围内查询,搜索引擎会根据地址a计算对应的中心点;如果只指定了lng|lat而没有a,则以lng|lat指定的经纬度作为中心点;如果同时指定a和lng|lat,则在地址a范围内检索,同时把lng|lat指定的中心点作为a对应的中心点。
-
返回内容
该API返回一定数量的商户信息,如下:
<?xml version="1.0" encoding="utf-8" ?> <root> <index_num>121286</index_num> <total>300</total> <result_num>10</result_num> <web_url>http://www.aibang.com</web_url> <wap_url>http://wap.aibang.com</wap_url> <bizs> <biz> <id>17700376-419866368</id> <name>巫山烤全鱼(交大店)</name> <addr>西城区西直门交大东路46号(佰金KTV对面胡同里)</addr> <tel>010-51562760</tel> <cate>烤鱼;美食;川菜;烧烤</cate> <rate>4</rate> <cost>0</cost> <desc>江边城外·巫山烤全鱼 北京江边城外餐饮管理有限公司,成立于2006年,是一家专业的连锁餐饮...</desc> <dist>-1</dist> <lng>116.3492255</lng> <lat>39.950558</lat> <img_url>http://img0.aibangjuxin.com/ipic/f5f9631bec2d9fea_8.jpg</img_url> </biz> ... </bizs> </root>
字段 类型 意义 备注 index_num int 检索的结果总数 检索中所有匹配的记录数量 total int 总记录数 接口返回的商户记录总数(最多300) result_num int 返回的记录数 当前请求返回的结果数量 web_url string 爱帮web站对应url wap_url string 爱帮wap站对应url id string 商户ID 爱帮商户ID的格式是INT-INT,即中短线连接的两个整数 name string 商户名 addr string 商户地址 tel string 商户电话号码 cate string 商户类别 可为多个,以半角分号;(英文分号)分隔 rate float 商户星级 范围1~5,0表示未评级 cost int 人均消费 单位:元,0表示无消费或未知消费 desc string 商户简介 dist int 与中心点距离 单位是千米,-1表示距离无效 lng float 经度 商户所在位置的经度 lat float 纬度 商户所在位置的纬度 img_url string 商户图片url
看到上面api必须输入城市名,我想减少微信上的操作,于是打算用经纬度得到城市,
昨天刚写了这个功能 详情见 http://blog.csdn.net/xuyw10000/article/details/33342489
附上代码
public static List searchFj(String q, String city, String lng, String lat) throws Exception { List list = new ArrayList(); String str = HttpUtil.getRequest(SEARCH_FJ + "?from=1&to=9&rc=2", "app_key:" + Config.AIBANG_KEY, "city:" + city, "lng:" + lng, "lat:" + lat, "q:" + q); Document document = DocumentHelper.parseText(str); // 得到xml根元素 Element root = document.getRootElement(); // result_num表示搜索到的公交路线数 String result_num = root.element("result_num").getText(); if (!"0".equals(result_num)) { // 获取根节点下的子节点bizs Iterator bizs = root.element("bizs").elementIterator(); while (bizs.hasNext()) { Map map = new HashMap(); Element biz = (Element) bizs.next(); List<Element> elementList = biz.elements(); // 遍历所有子节点 for (Element e : elementList) map.put(e.getName(), e.getText()); list.add(map); } } return list; } public static void main(String[] args) throws Exception { List list = AiBangUtil.searchFj("餐馆", "南昌", "115.958458", "28.696117"); for (int i = 0; i < list.size(); i++) { Map<Object, Object> map = (Map<Object, Object>) list.get(i); for (Map.Entry<Object, Object> entry : map.entrySet()) { System.out.println(entry.getKey() + " : " + entry.getValue()); } } }
HttpUtil 见 http://blog.csdn.net/xuyw10000/article/details/33342489
返回结果集
img_url : http://img0.aibangjuxin.com/ipic/dd3d5d81c3f14036_8.jpg id : 693550581-432645732 desc : 滋味楼位于近郊高新开发区火炬大道近丰源集团大厦,主要经营赣南菜,农家菜,菜有点特色,口味... rate : 4 cate : 美食;其他美食 tel : 0791-8196688 name : 滋味楼 lng : 115.9614 addr : 近郊高新开发区火炬大道(近丰源集团大厦) cost : 43 lat : 28.69648 dist : 0.3 img_url : id : 1232117961-423760332 desc : rate : 0 cate : 美食;其他美食 tel : name : 渔味名厨 lng : 115.95992 addr : 青山湖区火炬二路罗万罗谢村233号 cost : 0 lat : 28.693348 dist : 0.3 img_url : id : 285771922-419797984 desc : rate : 0 cate : 小吃快餐;美食;其他小吃 tel : 18779178698 name : 广昌水饺 lng : 115.96064 addr : 近郊高新区火炬二路(纬泰超市西边斜对面) cost : 0 lat : 28.69358 dist : 0.4 img_url : id : 293706066-420217555 desc : 农妇柴房,南昌市是一家知名度很高的风味餐厅。价格比较便宜、环境不错、服务态度也很好。主要... rate : 0 cate : 美食;其他美食 tel : name : 农妇柴房 lng : 115.960198 addr : 高新北大道600号罗万村(近圆中源大酒店) cost : 30 lat : 28.693144 dist : 0.4 img_url : id : 1805588933-943974780 desc : rate : 0 cate : 粤菜;茶餐厅;美食 tel : name : 避风塘(火炬二路店) lng : 115.95865 addr : 青山湖区火炬二路 cost : 0 lat : 28.69278 dist : 0.4 img_url : id : 442301627-443221322 desc : rate : 0 cate : 美食;甜点饮品 tel : name : 金冠蛋糕(火炬二路店) lng : 115.95915 addr : 青山湖区火炬二路 cost : 0 lat : 28.69244 dist : 0.4 img_url : id : 435466635-435623173 desc : rate : 0 cate : 美食;其他美食 tel : name : 鱼米之香 lng : 115.96237 addr : 青山湖区火炬二路406号(近京东大道) cost : 0 lat : 28.69389 dist : 0.5 img_url : id : 559255524-424804592 desc : rate : 0 cate : 小吃快餐;美食;其他小吃 tel : name : 大食头白领快餐(艾湖店) lng : 115.96237 addr : 青山湖区火炬二路 cost : 0 lat : 28.69389 dist : 0.5 img_url : id : 1227347689-423256140 desc : rate : 0 cate : 美食;小吃快餐;湖北菜;快餐;火锅;其他火锅 tel : name : 湖北风味小吃 lng : 115.96237 addr : 青山湖区火炬二路附近 cost : 0 lat : 28.69389 dist : 0.5
将结果转换成xml在微信回复多图文
public String getWeather(Map map) { String message=null; String openid = map.get("FromUserName") + ""; String toUserName = map.get("ToUserName") + ""; String city = map.get("city") + ""; JSONObject obj = BaiduUtil.getWeatherInfo(city); String status = obj.getString("status"); if("success".equals(status)){//查找到了 JSONArray jarray=obj.getJSONArray("results"); int size=jarray.size(); if(size>0){ JSONObject j2=jarray.getJSONObject(0); JSONArray jarray2=j2.getJSONArray("weather_data"); List<Article> articleList = new ArrayList<Article>(); // 创建图文消息 NewsMessage newsMessage = new NewsMessage(); newsMessage.setToUserName(openid); newsMessage.setFromUserName(toUserName); newsMessage.setCreateTime(new Date().getTime()); newsMessage.setMsgType(MessageUtil.RESP_MESSAGE_TYPE_NEWS); newsMessage.setFuncFlag(0); int size2=jarray2.size(); for (int i = 0; i < jarray2.size(); i++) { JSONObject j3=jarray2.getJSONObject(i); String date=j3.getString("date"); String weather=j3.getString("weather"); String wind=j3.getString("wind"); String temperature=j3.getString("temperature"); String title=""; String img_url=j3.getString("dayPictureUrl"); if(i==0){ title=date+" "+weather+" "+wind; }else{ title=date+" "+weather+" "+temperature+" "+wind; } Article article = new Article(); article.setTitle(title); article.setDescription(""); article.setPicUrl(img_url); article.setUrl("http://blog.csdn.net/xuyw10000"); articleList.add(article); } newsMessage.setArticleCount(size2); newsMessage.setArticles(articleList); message = MessageUtil.newsMessageToXml(newsMessage); }else{ map.put("xuywMsg", "啊噢,找不到“"+city+"”的天气。"); message=sendTextMessage(map); } }else{//无结果 map.put("xuywMsg", "啊噢,这个地方百度都找不到。"); message=sendTextMessage(map); } return message; }
/** * 发送文本信息 * * @param map * @return */ public String sendTextMessage(Map map) { String openid = map.get("FromUserName") + ""; String toUserName = map.get("ToUserName") + ""; String xuywMsg = map.get("xuywMsg") + ""; TextMessage textMessage = new TextMessage(); textMessage.setToUserName(openid); textMessage.setFromUserName(toUserName); textMessage.setCreateTime(new Date().getTime()); textMessage.setMsgType(MessageUtil.RESP_MESSAGE_TYPE_TEXT); textMessage.setFuncFlag(0); textMessage.setContent(xuywMsg); return MessageUtil.textMessageToXml(textMessage); }
执行返回xml
<xml> <ToUserName><![CDATA[sadsdaewwaewea]]></ToUserName> <FromUserName><![CDATA[bbbbb]]></FromUserName> <CreateTime><![CDATA[1403495107127]]></CreateTime> <MsgType><![CDATA[news]]></MsgType> <FuncFlag><![CDATA[0]]></FuncFlag> <ArticleCount><![CDATA[9]]></ArticleCount> <Articles> <item> <Title><![CDATA[距离0.3千米]]></Title> <Description><![CDATA[近郊高新开发区火炬大道(近丰源集团大厦)]]></Description> <PicUrl><![CDATA[http://img0.aibangjuxin.com/ipic/dd3d5d81c3f14036_8.jpg]]></PicUrl> <Url><![CDATA[http://api.map.baidu.com/marker?location=28.69648,115.9614&title=滋味楼&content=近郊高新开发区火炬大道(近丰源集团大厦)&output=html]]></Url> </item> <item> <Title><![CDATA[距离0.3千米]]></Title> <Description><![CDATA[青山湖区火炬二路罗万罗谢村233号]]></Description> <PicUrl><![CDATA[http://xywwx.sinaapp.com/resource/img/nopic.jpg]]></PicUrl> <Url><![CDATA[http://api.map.baidu.com/marker?location=28.693348,115.95992&title=渔味名厨&content=青山湖区火炬二路罗万罗谢村233号&output=html]]></Url> </item> <item> <Title><![CDATA[距离0.4千米]]></Title> <Description><![CDATA[近郊高新区火炬二路(纬泰超市西边斜对面)]]></Description> <PicUrl><![CDATA[http://xywwx.sinaapp.com/resource/img/nopic.jpg]]></PicUrl> <Url><![CDATA[http://api.map.baidu.com/marker?location=28.69358,115.96064&title=广昌水饺&content=近郊高新区火炬二路(纬泰超市西边斜对面)&output=html]]></Url> </item> <item> <Title><![CDATA[距离0.4千米]]></Title> <Description><![CDATA[高新北大道600号罗万村(近圆中源大酒店)]]></Description> <PicUrl><![CDATA[http://xywwx.sinaapp.com/resource/img/nopic.jpg]]></PicUrl> <Url><![CDATA[http://api.map.baidu.com/marker?location=28.693144,115.960198&title=农妇柴房&content=高新北大道600号罗万村(近圆中源大酒店)&output=html]]></Url> </item> <item> <Title><![CDATA[距离0.4千米]]></Title> <Description><![CDATA[青山湖区火炬二路]]></Description> <PicUrl><![CDATA[http://xywwx.sinaapp.com/resource/img/nopic.jpg]]></PicUrl> <Url><![CDATA[http://api.map.baidu.com/marker?location=28.69278,115.95865&title=避风塘(火炬二路店)&content=青山湖区火炬二路&output=html]]></Url> </item> <item> <Title><![CDATA[距离0.4千米]]></Title> <Description><![CDATA[青山湖区火炬二路]]></Description> <PicUrl><![CDATA[http://xywwx.sinaapp.com/resource/img/nopic.jpg]]></PicUrl> <Url><![CDATA[http://api.map.baidu.com/marker?location=28.69244,115.95915&title=金冠蛋糕(火炬二路店)&content=青山湖区火炬二路&output=html]]></Url> </item> <item> <Title><![CDATA[距离0.5千米]]></Title> <Description><![CDATA[青山湖区火炬二路406号(近京东大道)]]></Description> <PicUrl><![CDATA[http://xywwx.sinaapp.com/resource/img/nopic.jpg]]></PicUrl> <Url><![CDATA[http://api.map.baidu.com/marker?location=28.69389,115.96237&title=鱼米之香&content=青山湖区火炬二路406号(近京东大道)&output=html]]></Url> </item> <item> <Title><![CDATA[距离0.5千米]]></Title> <Description><![CDATA[青山湖区火炬二路]]></Description> <PicUrl><![CDATA[http://xywwx.sinaapp.com/resource/img/nopic.jpg]]></PicUrl> <Url><![CDATA[http://api.map.baidu.com/marker?location=28.69389,115.96237&title=大食头白领快餐(艾湖店)&content=青山湖区火炬二路&output=html]]></Url> </item> <item> <Title><![CDATA[距离0.5千米]]></Title> <Description><![CDATA[青山湖区火炬二路附近]]></Description> <PicUrl><![CDATA[http://xywwx.sinaapp.com/resource/img/nopic.jpg]]></PicUrl> <Url><![CDATA[http://api.map.baidu.com/marker?location=28.69389,115.96237&title=湖北风味小吃&content=青山湖区火炬二路附近&output=html]]></Url> </item> </Articles> </xml>
将项目部署sae 请求
时间: 2024-10-26 03:27:54