惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
月光博客
月光博客
博客园 - 司徒正美
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
量子位
Recent Announcements
Recent Announcements
V
V2EX
P
Proofpoint News Feed
小众软件
小众软件
云风的 BLOG
云风的 BLOG
腾讯CDC
宝玉的分享
宝玉的分享
Microsoft Azure Blog
Microsoft Azure Blog
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
B
Blog
博客园_首页
GbyAI
GbyAI
博客园 - Franky

博客园 - Brune

批量Clip 要素类属性内容全角换半角 GPServer发布的一个怪问题 高焕堂Android應用框架原理與程式設計代码补遗(一) - Brune - 博客园 GMapViewer初具雏形 FileGeodatabase的一个发现 搞定3G上网 ArcGIS SDK for .Net咋就不能自动释放对象呢 Fluorine中的ORA-12640错误 在Sql Server 2008上安装SDE 9.3 终于可以通过Flex上传文件到数据库了 SqlServer 空间数据的初体验 Flex SDK 4.0I配置 Windows Server 2008中配置FluorineFx 庶民GIS的时代渐渐到来了 题外话 Flex下的ArcIMS开发──环境配置(上) ArcGIS Server Flex ADF 即将到来 新迭代的开始
初步完成ArcGIS Silverlight的数据源扩展
Brune · 2010-11-21 · via 博客园 - Brune

WMS已经由官方放出,这边就不罗嗦了,在搞WFS客户端。累啊!

Google

  GoogleMapTileLayer glayer = new GoogleMapTileLayer(GoogleMapType.GoogleMap, GoogleMapTileLayer.LanguageType.ChineseSimplified);

mapMain.Layers.Add(glayer);

image

Bing地图

中国版的待研究

BingMapTileLayer bLayer = new BingMapTileLayer(BingMapTileLayer.UrlBingStaging,"", BingMapType.Roads);

mapMain.Layers.Add(bLayer);

image

我最看好的OpenStreetMap,感谢ESRI官方提供

image

ArcGIS直读切片

TileInfo tileInfo = new TileInfo();
            tileInfo.Height = 256;
            tileInfo.Width = 256;
            tileInfo.Origin = new MapPoint(-180f, 90f);
            tileInfo.SpatialReference = new SpatialReference(4*);

            tileInfo.Lods = new Lod[12]{
                new Lod(){ Resolution=0.021****},
                new Lod(){ Resolution=0.01****},
                new Lod(){ Resolution=0.005499****},
                new Lod(){ Resolution=0.****},
                new Lod(){ Resolution=0.001****},
                ….            };
            Uri uri = new Uri("http://******/");
            string format = "png";
            Envelope extent = new Envelope(105.19*3, 31.3120*1, 111.53*7, 39.979*1);
            extent.SpatialReference = new SpatialReference(4*);

ArcGISDirectTileLayer directileLayer = new ArcGISDirectTileLayer(uri, format, tileInfo, extent,false);

mapMain.Layers.Add(directileLayer);

image

最后再来一张国产的天地图,哇哈哈。

TianDiTuTileLayer tdtLayer = new TianDiTuTileLayer(TianDiTuTileLayer.TianDiTuMapType.TDTRaster);
            TianDiTuTileLayer tdtLayer1 = new TianDiTuTileLayer(TianDiTuTileLayer.TianDiTuMapType.TDTRasterAnno);
            //directileLayer.Initialize();
            try
            {
               
                mapMain.Layers.Add(tdtLayer);
                mapMain.Layers.Add(tdtLayer1);
            }

image

来个矢量

image

下一步研究一下Bing和国产的baidu==.嘿嘿…