行政区域边界提取

实现功能:使用WebBrowser和百度地图JS API 提取任意行政区域边界


最终效果展示


提取结果:行政区域边界提取_第1张图片


实现过程:
1.将html源文件载入到WebBrowser

        WebBrowser wb = new WebBrowser();
        using (StreamReader sr = new StreamReader("1.html"))
        {
                String str = sr.ReadToEnd();
                wb.DocumentText = str;
        }

2.将调用html页面中的getBoundary方法

        object[] args = { "省、直辖市或县名称" };
        wb.Document.InvokeScript("getBoundary", args);

相关下载
html页

你可能感兴趣的:(C#)