如何在 ASP.Net 网站中集成 Yahoo 静态地图
如何在ASP.Net gridview控件中显示yahoo静态地图?加载地图的地址将出现在 gridview 的一列中,并且基于每行的地址,静态地图必须显示在每行上。
How to display yahoo static map in ASP.Net gridview control? The address for loading the map will be present in one of the columns of gridview and based on the address of each row the static map has to be displayed on each row.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经完成了在 ASP.Net 网页上显示静态地图的代码。我们可以在gridview的行数据绑定事件中调用DisplayYStaticMap方法,并在gridview中显示yahoo静态地图。
公共静态字符串 DisplayYStaticMap(字符串街道名称,字符串城市名称,字符串状态名称,int imgWidth,int imgHeight,int Zoom)
{
WebClient wc = new WebClient();
imgPhotos.Src = DisplayYStaticMap(ds.Tables[0].Rows[0]["PropertyAddress"].ToString().Substring(0, ds.Tables[0].Rows[0]["PropertyAddress"].ToString( ).IndexOf(",")),
ds.Tables[0].Rows[0]["PropertyCity"].ToString(), ds.Tables[0].Rows[0]["PropertyState"].ToString(),150,90,8);
I have completed the code to display static map on ASP.Net web page. We can call the DisplayYStaticMap method in gridview's row databound event and display yahoo static map in gridview also.
public static string DisplayYStaticMap(string streetName, string CityName, string stateName, int imgWidth, int imgHeight,int zoom)
{
WebClient wc = new WebClient();
imgPhotos.Src = DisplayYStaticMap(ds.Tables[0].Rows[0]["PropertyAddress"].ToString().Substring(0, ds.Tables[0].Rows[0]["PropertyAddress"].ToString().IndexOf(",")),
ds.Tables[0].Rows[0]["PropertyCity"].ToString(), ds.Tables[0].Rows[0]["PropertyState"].ToString(),150,90,8);