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

推荐订阅源

D
Docker
爱范儿
爱范儿
T
The Exploit Database - CXSecurity.com
量子位
T
Tailwind CSS Blog
T
Threatpost
The GitHub Blog
The GitHub Blog
AWS News Blog
AWS News Blog
云风的 BLOG
云风的 BLOG
K
Kaspersky official blog
P
Proofpoint News Feed
博客园 - 司徒正美
L
LangChain Blog
T
Threat Research - Cisco Blogs
C
CERT Recently Published Vulnerability Notes
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
S
Secure Thoughts
The Last Watchdog
The Last Watchdog
Spread Privacy
Spread Privacy
H
Hacker News: Front Page
T
Troy Hunt's Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
W
WeLiveSecurity
A
Arctic Wolf
Apple Machine Learning Research
Apple Machine Learning Research
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
P
Proofpoint News Feed
T
Tor Project blog
T
The Blog of Author Tim Ferriss
I
Intezer
P
Privacy & Cybersecurity Law Blog
美团技术团队
N
Netflix TechBlog - Medium
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Vulnerabilities – Threatpost
Application and Cybersecurity Blog
Application and Cybersecurity Blog
G
Google Developers Blog
Attack and Defense Labs
Attack and Defense Labs
T
Tenable Blog
月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
J
Java Code Geeks
腾讯CDC
Microsoft Security Blog
Microsoft Security Blog
A
About on SuperTechFans
Last Week in AI
Last Week in AI

博客园 - 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==.嘿嘿…