You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.5 KiB
92 lines
3.5 KiB
using Senparc.CO2NET.Helpers;
|
|
using Senparc.CO2NET.Helpers.BaiduMap;
|
|
using Senparc.CO2NET.Helpers.GoogleMap;
|
|
using Senparc.NeuChar.Entities;
|
|
using Senparc.Weixin.MP.Entities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Znyc.Cloudcar.Admin.WeChat.CommonService
|
|
{
|
|
/// <summary>
|
|
/// 地理位置信息处理
|
|
/// </summary>
|
|
public class LocationService
|
|
{
|
|
public ResponseMessageNews GetResponseMessage(RequestMessageLocation requestMessage)
|
|
{
|
|
ResponseMessageNews responseMessage = ResponseMessageBase.CreateFromRequestMessage<ResponseMessageNews>(requestMessage);
|
|
|
|
#region 百度地图
|
|
|
|
{
|
|
List<BaiduMarkers> markersList = new List<BaiduMarkers>
|
|
{
|
|
new()
|
|
{
|
|
Longitude = requestMessage.Location_X,
|
|
Latitude = requestMessage.Location_Y,
|
|
Color = "red",
|
|
Label = "S",
|
|
Size = BaiduMarkerSize.m
|
|
}
|
|
};
|
|
|
|
string mapUrl = BaiduMapHelper.GetBaiduStaticMap(requestMessage.Location_X, requestMessage.Location_Y, 1,
|
|
6, markersList);
|
|
responseMessage.Articles.Add(new Article
|
|
{
|
|
Description = string.Format("【来自百度地图】您刚才发送了地理位置信息。Location_X:{0},Location_Y:{1},Scale:{2},标签:{3}",
|
|
requestMessage.Location_X, requestMessage.Location_Y,
|
|
requestMessage.Scale, requestMessage.Label),
|
|
PicUrl = mapUrl,
|
|
Title = "定位地点周边地图",
|
|
Url = mapUrl
|
|
});
|
|
}
|
|
|
|
#endregion 百度地图
|
|
|
|
#region GoogleMap
|
|
|
|
{
|
|
List<GoogleMapMarkers> markersList = new List<GoogleMapMarkers>
|
|
{
|
|
new()
|
|
{
|
|
X = requestMessage.Location_X,
|
|
Y = requestMessage.Location_Y,
|
|
Color = "red",
|
|
Label = "S",
|
|
Size = GoogleMapMarkerSize.Default
|
|
}
|
|
};
|
|
string mapSize = "480x600";
|
|
string mapUrl = GoogleMapHelper.GetGoogleStaticMap(
|
|
19 /*requestMessage.Scale*/ /*微信和GoogleMap的Scale不一致,这里建议使用固定值*/,
|
|
markersList, mapSize);
|
|
responseMessage.Articles.Add(new Article
|
|
{
|
|
Description = string.Format(
|
|
"【来自GoogleMap】您刚才发送了地理位置信息。Location_X:{0},Location_Y:{1},Scale:{2},标签:{3}",
|
|
requestMessage.Location_X, requestMessage.Location_Y,
|
|
requestMessage.Scale, requestMessage.Label),
|
|
PicUrl = mapUrl,
|
|
Title = "定位地点周边地图",
|
|
Url = mapUrl
|
|
});
|
|
}
|
|
|
|
#endregion GoogleMap
|
|
|
|
responseMessage.Articles.Add(new Article
|
|
{
|
|
Title = "微信公众平台SDK 官网链接",
|
|
Description = "Senparc.Weixin.MK SDK地址",
|
|
PicUrl = "https://sdk.weixin.senparc.com/images/logo.jpg",
|
|
Url = "https://sdk.weixin.senparc.com"
|
|
});
|
|
|
|
return responseMessage;
|
|
}
|
|
}
|
|
}
|