微信公众平台开发之地理位置.Net代码解析
微信公共平台中涉及到地理位置的有两种情况:
第一、我发送一个自选的地理位置给微信,然后微信可以自动反馈响应的信息。
第二、让微信获取我们gps定位地址位置,反馈响应的信息。
首先我们先来看第一种,在微信中除了可以发文本,图片,语音等还有一个信息就是地理位置,按照微信接受地理信息的xml信息,我们需要改造一下之前的wxmessage类加上几个属性:
class wxmessage { public string fromusername { get; set; } public string tousername { get; set; } public string msgtype { get; set; } public string eventname { get; set; } public string content { get; set; } public string recognition { get; set; } public string mediaid { get; set; } public string eventkey { get; set; } public string location_x { get; set; } public string location_y { get; set; } public string scale { get; set; } public string label { get; set; } } 其中location_x代表纬度,location_y代表经度,scale代表缩放比例,label代表位置的描述 和接受文本,语音消息一下样,地理信息的msgtype为“location”,修改一下之前的getwxmessage()函数和onload里面的消息处理: private wxmessage getwxmessage() { wxmessage wx = new wxmessage(); streamreader str = new streamreader(request.inputstream, system.text.encoding.utf8); xmldocument xml = new xmldocument(); xml.load(str); wx.tousername = xml.selectsinglenode("xml").selectsinglenode("tousername").innertext; wx.fromusername = xml.selectsinglenode("xml").selectsinglenode("fromusername").innertext; wx.msgtype = xml.selectsinglenode("xml").selectsinglenode("msgtype").innertext; if (wx.msgtype.trim() == "text") { wx.content = xml.selectsinglenode("xml").selectsinglenode("content").innertext; } if (wx.msgtype.trim() == "location") { wx.location_x = xml.selectsinglenode("xml").selectsinglenode("location_x").innertext; wx.location_y = xml.selectsinglenode("xml").selectsinglenode("location_y").innertext; wx.scale = xml.selectsinglenode("xml").selectsinglenode("scale").innertext; wx.label = xml.selectsinglenode("xml").selectsinglenode("label").innertext; } if (wx.msgtype.trim() == "event") { wx.eventname = xml.selectsinglenode("xml").selectsinglenode("event").innertext; wx.eventkey = xml.selectsinglenode("xml").selectsinglenode("eventkey").innertext; } if (wx.msgtype.trim() == "voice") { wx.recognition = xml.selectsinglenode("xml").selectsinglenode("recognition").innertext; } return wx; } protected void page_load(object sender, eventargs e) { wxmessage wx = getwxmessage(); string res = ""; if (!string.isnullorempty(wx.eventname) && wx.eventname.trim() == "subscribe") { string content = ""; if (!wx.eventkey.contains("qrscene_")) { content = "/:rose欢迎北京永杰友信科技有限公司/:rose\n直接回复“你好”"; res = sendtextmessage(wx, content); } else { content = "二维码参数:\n" + wx.eventkey.replace("qrscene_", ""); res = sendtextmessage(wx, content); } } else if (!string.isnullorempty(wx.eventname) && wx.eventname.tolower() == "scan") { string str = "二维码参数:\n" + wx.eventkey; res = sendtextmessage(wx, str); } else if (!string.isnullorempty(wx.eventname) && wx.eventname.trim() == "click") { if(wx.eventkey=="hello") res = sendtextmessage(wx, "你好,欢迎使用北京永杰友信科技有限公司公共微信平台!"); } else { writelog(wx.msgtype); if (wx.msgtype == "text" && wx.content == "你好") { res = sendtextmessage(wx, "你好,欢迎使用北京永杰友信科技有限公司公共微信平台!"); } else if (wx.msgtype == "voice") { res = sendtextmessage(wx, wx.recognition); } else if (wx.msgtype == "location") { res = sendtextmessage(wx, "您发送的位置是:" + wx.label + ";纬度是:" + wx.location_x + ";经度是:" + wx.location_y + ";缩放比例为:" + wx.scale); } else { res = sendtextmessage(wx, "你好,未能识别消息!"); } } response.write(res); }
这样当我们发送一个地理位置信息的时候就可以反馈响应的信息了。值得一提的是:这里的地理信息位置无需授权,因为自己发送的地理信息位置不一定是自己的真实位置,我们可以在输入界面进行任意选择,不会涉及隐私。
当然如果我们像制作类似于“我附近”的功能的时候,就必须有两个条件,在微信公共号中开启获取用户地理信息的功能。第二,用户自己在关注微信的时候允许微信公共号获取我的位置。这就需要用到我们在文章开始的时候给大家介绍的第二种情况了。按照微信的解释,当一个会话开始的时候(也就是说进入对话界面的时候),首先获取一下,然后每个五秒自动获取一次。也就是就是说获得用户位置信息的时候触发的不是“你一言我一语的对话”,而是一个特殊的事件,每格五秒出发一次。这里被定义为msgtype为“event”,而为了区别于其他的“event”,他的eventname(其实官方叫做event)为“location”(大写哦)。
下面我依然需要按照微信的格式修改我们的wxmessage类:
class wxmessage { public string fromusername { get; set; } public string tousername { get; set; } public string msgtype { get; set; } public string eventname { get; set; } public string content { get; set; } public string recognition { get; set; } public string mediaid { get; set; } public string eventkey { get; set; } public string location_x { get; set; } public string location_y { get; set; } public string scale { get; set; } public string label { get; set; } public string latitude { get; set; } public string longitude { get; set; } public string precision { get; set; } } 改造一下getwxmessage()函数和onload函数: private wxmessage getwxmessage() { wxmessage wx = new wxmessage(); streamreader str = new streamreader(request.inputstream, system.text.encoding.utf8); xmldocument xml = new xmldocument(); xml.load(str); wx.tousername = xml.selectsinglenode("xml").selectsinglenode("tousername").innertext; wx.fromusername = xml.selectsinglenode("xml").selectsinglenode("fromusername").innertext; wx.msgtype = xml.selectsinglenode("xml").selectsinglenode("msgtype").innertext; writelog("msgtype:"+wx.msgtype); if (wx.msgtype.trim() == "event") { wx.eventname = xml.selectsinglenode("xml").selectsinglenode("event").innertext; writelog(wx.eventname); if (wx.eventname.toupper() == "location") { wx.latitude = xml.selectsinglenode("xml").selectsinglenode("latitude").innertext; wx.longitude = xml.selectsinglenode("xml").selectsinglenode("longitude").innertext; wx.precision = xml.selectsinglenode("xml").selectsinglenode("precision").innertext; } else { wx.eventkey = xml.selectsinglenode("xml").selectsinglenode("eventkey").innertext; } } if (wx.msgtype.trim() == "text") { wx.content = xml.selectsinglenode("xml").selectsinglenode("content").innertext; } if (wx.msgtype.trim() == "location") { wx.location_x = xml.selectsinglenode("xml").selectsinglenode("location_x").innertext; wx.location_y = xml.selectsinglenode("xml").selectsinglenode("location_y").innertext; wx.scale = xml.selectsinglenode("xml").selectsinglenode("scale").innertext; wx.label = xml.selectsinglenode("xml").selectsinglenode("label").innertext; } if (wx.msgtype.trim() == "voice") { wx.recognition = xml.selectsinglenode("xml").selectsinglenode("recognition").innertext; } return wx; }
当msgtype为event的时候我们之前用到的是菜单的事件,现在我们需要加入其eventname为"location"的代码段,因为现在还没有涉及其他的event我后面就用else好了,后面我会把代码写的规范些。在这里分别给新增的三个属性赋值,然后修改一下onload函数
protected void page_load(object sender, eventargs e) { wxmessage wx = getwxmessage(); string res = ""; if (!string.isnullorempty(wx.eventname) && wx.eventname.trim() == "subscribe") { string content = ""; if (!wx.eventkey.contains("qrscene_")) { content = "/:rose欢迎北京永杰友信科技有限公司/:rose\n直接回复“你好”"; res = sendtextmessage(wx, content); } else { content = "二维码参数:\n" + wx.eventkey.replace("qrscene_", ""); res = sendtextmessage(wx, content); } } else if (!string.isnullorempty(wx.eventname) && wx.eventname.tolower() == "scan") { string str = "二维码参数:\n" + wx.eventkey; res = sendtextmessage(wx, str); } else if (!string.isnullorempty(wx.eventname) && wx.eventname.trim() == "click") { if(wx.eventkey=="hello") res = sendtextmessage(wx, "你好,欢迎使用北京永杰友信科技有限公司公共微信平台!"); } else if (!string.isnullorempty(wx.eventname) && wx.eventname.trim() == "location") { res = sendtextmessage(wx, "您的位置是经度:" + wx.latitude + ",维度是:" + wx.longitude+",地理经度为:"+wx.precision); } else { if (wx.msgtype == "text" && wx.content == "你好") { res = sendtextmessage(wx, "你好,欢迎使用北京永杰友信科技有限公司公共微信平台!"); } else if (wx.msgtype == "voice") { res = sendtextmessage(wx, wx.recognition); } else if (wx.msgtype == "location") { res = sendtextmessage(wx, "您发送的位置是:" + wx.label + ";纬度是:" + wx.location_x + ";经度是:" + wx.location_y + ";缩放比例为:" + wx.scale); } else { res = sendtextmessage(wx, "你好,未能识别消息!"); } } response.write(res); }
好了,完成,这样当你开启你的微信“获得用户位置信息”的时候微信平台会提醒你,是仅进入会话第一次获取,还是每个5秒获取一次,如果你选择了后者,你就会看到,每5秒会反馈给你一个地理位置的信息。
这里面需要非常注意的是:我按照这样认为没有问题了,但是怎么也获得不了信息,那是因为我在进入会话的时候,你会看到你的手机gps在搜索,在gps定位以前,是不会看到内容的。可以这样理解,当你gps搜索定位后,才会触发获得用户位置信息的事件,这一点并不是我想象的通过基站定位也可以获得大致的位置,这一点需要开发者注意,我就是弄了半天,等我出门儿,手机定位了无意间看到了回复,这才恍然大悟。
说到这里可以各位会问只知道经纬度坐标有什么用?又不是具体位置。其实不然,我们可以使用多种方法知道位置详细的信息,例如我们可以通过baidumap api的地址反向解析指导这个坐标在那个城市,那个街道等内容,甚至可以知道附近的情况,这里就不再多说了,以后有机会和大家一起来谈谈baidumap
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。