如何在 ASP.Net 网站中集成 Yahoo 静态地图

发布于 2024-09-26 11:35:05 字数 90 浏览 2 评论 0原文

如何在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫九 2024-10-03 11:35:05

我已经完成了在 ASP.Net 网页上显示静态地图的代码。我们可以在gridview的行数据绑定事件中调用DisplayYStaticMap方法,并在gridview中显示yahoo静态地图。

公共静态字符串 DisplayYStaticMap(字符串街道名称,字符串城市名称,字符串状态名称,int imgWidth,int imgHeight,int Zoom)
{
WebClient wc = new WebClient();

        StringBuilder strb = new StringBuilder();
        strb.Append("http://local.yahooapis.com/MapsService/V1/mapImage?Appid=YOURAPIID--&");
        if (streetName != "")
        {
            strb.Append("street=");
            strb.Append(streetName);
        }
        if (CityName != "")
        {
            strb.Append("&city=");
            strb.Append(CityName);
        }
        if (stateName != "")
        {
            strb.Append("&state=");
            strb.Append(stateName);
        }
        if (imgHeight != 0)
        {
            strb.Append("&image_height=");
            strb.Append(imgHeight);
        }
        if (imgWidth != 0)
        {
            strb.Append("&image_width=");
            strb.Append(imgWidth);
        }
        if (zoom != 0)
        {
            strb.Append("&zoom=");
            strb.Append(zoom);
        }
        string str = wc.DownloadString(strb.ToString());

        if (str.IndexOf("--&") != -1)
        {
            return str.Substring(str.IndexOf("http://gws.maps.yahoo.com"), str.IndexOf("--&"));
        }
        else
        {
            return str.Substring(str.IndexOf("http://gws.maps.yahoo.com"));
        }
    }
}

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();

        StringBuilder strb = new StringBuilder();
        strb.Append("http://local.yahooapis.com/MapsService/V1/mapImage?Appid=YOURAPIID--&");
        if (streetName != "")
        {
            strb.Append("street=");
            strb.Append(streetName);
        }
        if (CityName != "")
        {
            strb.Append("&city=");
            strb.Append(CityName);
        }
        if (stateName != "")
        {
            strb.Append("&state=");
            strb.Append(stateName);
        }
        if (imgHeight != 0)
        {
            strb.Append("&image_height=");
            strb.Append(imgHeight);
        }
        if (imgWidth != 0)
        {
            strb.Append("&image_width=");
            strb.Append(imgWidth);
        }
        if (zoom != 0)
        {
            strb.Append("&zoom=");
            strb.Append(zoom);
        }
        string str = wc.DownloadString(strb.ToString());

        if (str.IndexOf("--&") != -1)
        {
            return str.Substring(str.IndexOf("http://gws.maps.yahoo.com"), str.IndexOf("--&"));
        }
        else
        {
            return str.Substring(str.IndexOf("http://gws.maps.yahoo.com"));
        }
    }
}

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);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文