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

推荐订阅源

TaoSecurity Blog
TaoSecurity Blog
L
LINUX DO - 最新话题
Help Net Security
Help Net Security
N
News | PayPal Newsroom
www.infosecurity-magazine.com
www.infosecurity-magazine.com
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
The Last Watchdog
The Last Watchdog
S
Security @ Cisco Blogs
W
WeLiveSecurity
C
CXSECURITY Database RSS Feed - CXSecurity.com
Webroot Blog
Webroot Blog
T
Troy Hunt's Blog
V
Vulnerabilities – Threatpost
Google Online Security Blog
Google Online Security Blog
N
News and Events Feed by Topic
T
Threat Research - Cisco Blogs
Security Archives - TechRepublic
Security Archives - TechRepublic
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tor Project blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
D
Darknet – Hacking Tools, Hacker News & Cyber Security
PCI Perspectives
PCI Perspectives
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
IT之家
IT之家
S
SegmentFault 最新的问题
J
Java Code Geeks
P
Privacy & Cybersecurity Law Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
博客园 - 【当耐特】
博客园_首页
H
Hacker News: Front Page
T
Threatpost
Jina AI
Jina AI
博客园 - Franky
月光博客
月光博客
L
LINUX DO - 热门话题
The Cloudflare Blog
H
Heimdal Security Blog
博客园 - 司徒正美
酷 壳 – CoolShell
酷 壳 – CoolShell
Cloudbric
Cloudbric
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
S
Secure Thoughts
T
Tenable Blog
I
Intezer
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

博客园 - Kiven

50个常用SQL语句 [摘]在ASP.NET MVC中使用DropDownList SQL Server里面可能经常会用到的日期格式转换方法 [摘]Asp.net MVC 3中Session与ViewBag传值到Js中 « 给初学C++者的50条忠告 C++/CLI学习入门数组 asp.net页面刷新后样式就发生了改变 System::String^ / std::string / char * 间的转换(部分) [摘]C/C++实现js的split函数功能 char*与System::String^的相互转换 Windows Phone 7 常用绘图控件 [网摘]深入浅出解读微软云计算:让云触手可及 【网摘日记】云计算五层架构 [MVP在线交流]微软原型设计工具SketchFlow企业级应用(二) Web项目VS2005转VS2008平台注意事宜。 [俱乐部在线交流]微软原型设计工具SketchFlow企业级应用(一) [武汉站]Windows 7社区发布活动圆满成功! [武汉站]Windows 7 社区发布活动 宏博软件“移动公教站”之“微软新技术预览”系列资料
Windows Phone 7 常用控件之Map
Kiven · 2012-02-18 · via 博客园 - Kiven

       首先去https://www.bingmapsportal.com/申请一个免费的Key。

       CredentialsProvider  =“Key”

       ScaleVisibility   标尺

       ZoomBarVisibility  放大缩小

        Mode       模式切换(地图、卫星)

       Center  中心经纬度

       ZoomLevel   缩放水平 

       深入一点:

       一、加标记

       Pushpin 类

            Pushpin pin = new Pushpin();

            pin.Location = new System.Device.Location.GeoCoordinate(30.508, 114.393);               //  经纬度
            pin.Width = 120;
            pin.Height = 100;
            pin.Content = "我家住这儿!";
            pin.Background = new SolidColorBrush(Colors.Brown);

            myMap.Children.Add(pin);

       二、绘制多边形区域

       多边形、自动封闭MapPolygon类

            MapPolygon poly = new MapPolygon();
            poly.Fill = new SolidColorBrush(Colors.Purple);
            poly.Stroke = new SolidColorBrush(Colors.Red);
            poly.StrokeThickness = 8;
            poly.Opacity = 0.7;

            poly.Locations = new LocationCollection() {
                    new GeoCoordinate(30.508, 114.393),
                    new GeoCoordinate(30.5098, 114.3953),
                    new GeoCoordinate(30.5082, 114.3960),
                    new GeoCoordinate(30.5078, 114.3946)};
            myMap.Children.Add(poly);

       多边线(形)、不能自动封闭MapPolyline类

            MapPolyline polyline = new MapPolyline();
            polyline.Stroke = new SolidColorBrush(Colors.Red);
            polyline.StrokeThickness = 8;
            polyline.Opacity = 0.7;

            polyline.Locations = new LocationCollection() {
                    new GeoCoordinate(30.508, 114.393),
                    new GeoCoordinate(30.5083, 114.3916),
                    new GeoCoordinate(30.5045, 114.3916),
                    new GeoCoordinate(30.5059, 114.3954)};
            myMap.Children.Add(polyline);

        三、加图片

        MapLayer类 

            Image img = new Image();
            img.Width = 100;
            img.Height = 100;
            img.Source = new BitmapImage(new Uri("Lighthouse.jpg",UriKind.Relative));

            MapLayer mlayer = new MapLayer();
            mlayer.AddChild(img,new GeoCoordinate(30.5068,114.3939),PositionOrigin.BottomLeft);
            myMap.Children.Add(mlayer);