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

推荐订阅源

W
WeLiveSecurity
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure Blog
The Register - Security
The Register - Security
Stack Overflow Blog
Stack Overflow Blog
博客园 - 三生石上(FineUI控件)
T
Threat Research - Cisco Blogs
S
SegmentFault 最新的问题
V2EX - 技术
V2EX - 技术
Hacker News: Ask HN
Hacker News: Ask HN
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
P
Proofpoint News Feed
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
M
MIT News - Artificial intelligence
AI
AI
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
P
Proofpoint News Feed
Hacker News - Newest:
Hacker News - Newest: "LLM"
B
Blog
N
News and Events Feed by Topic
N
News | PayPal Newsroom
Google DeepMind News
Google DeepMind News
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
C
Cybersecurity and Infrastructure Security Agency CISA
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
U
Unit 42
腾讯CDC
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
The Cloudflare Blog
H
Help Net Security
Recent Announcements
Recent Announcements
P
Privacy & Cybersecurity Law Blog
IT之家
IT之家
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Security Archives - TechRepublic
Security Archives - TechRepublic
L
LINUX DO - 热门话题
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
H
Heimdal Security Blog
博客园 - 聂微东
S
Securelist
大猫的无限游戏
大猫的无限游戏
Cloudbric
Cloudbric
Cisco Talos Blog
Cisco Talos Blog

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