博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Winodows Phone 7控件详解]Map-2
阅读量:6609 次
发布时间:2019-06-24

本文共 1413 字,大约阅读时间需要 4 分钟。

1. 加一个标记:

加标记,是地图中最常用的方法。它和bing map又有所不同,首先所在的命名空间不同;其次显示方式不同;但总之都是可以在模拟上运行的。

//加标记 Pushpin pin = new Pushpin(); pin.Location = new GeoCoordinate(30.26, 120.13); pin.Width = 300; pin.Height = 300; pin.Content = "某某体育馆"; pin.Background = new SolidColorBrush(Colors.Blue); map1.Children.Add(pin);

2. 绘制多边型区域:

//绘制多边形区域 MapPolygon polygon = new MapPolygon(); polygon.Locations = new LocationCollection() { new GeoCoordinate(30.259497, 120.129798), new GeoCoordinate(30.359497, 120.329998), new GeoCoordinate(30.379497, 120.529798), new GeoCoordinate(30.389497, 120.729798) }; polygon.Stroke = new SolidColorBrush(Colors.Red); polygon.StrokeThickness = 5; polygon.Fill = new SolidColorBrush(Colors.Green); map1.Children.Add(polygon);

3. 绘制多边线:

//绘制多边线 MapPolyline polyline = new MapPolyline(); polyline.Stroke = new SolidColorBrush(Colors.Yellow ); polygon.StrokeThickness = 10; polyline.Locations = new LocationCollection() {
new GeoCoordinate(30.259497, 120.129798), new GeoCoordinate(30.289497, 120.120998) }; map1.Children.Add(polyline);

4.在地图上增加图片:

//在地图上加入图片 MapLayer imagelayer = new MapLayer(); Image image = new Image(); image.Width = 150; image.Height = 150; image.Source = new BitmapImage(new Uri("Images/1.jpg",UriKind.Relative)); imagelayer.AddChild( (UIElement)image , new GeoCoordinate(30.259497, 120.129798), PositionOrigin.BottomLeft); map1.Children.Add(imagelayer);

 可以参考Silverlight Maps:做出相应的功能。

转载地址:http://jxiso.baihongyu.com/

你可能感兴趣的文章
Directx11教程(16) D3D11管线(5)
查看>>
How to determine which patches have been applied
查看>>
Delphi工具之Image Editor
查看>>
ORA-02266: 表中的唯一/主键被启用的外键引用
查看>>
replace与replaceAll的区别
查看>>
Rabbitmq的调度策略
查看>>
Altium Designer部分快捷键和使用技巧
查看>>
Linux 版本 一览
查看>>
ORM
查看>>
【IAR警告】Warning[Pa082]: undefined behavior: the order of volatile accesses is undefined
查看>>
获得表单文件的正文的二进制(环境vbs)
查看>>
【转】虚拟机检测技术
查看>>
struts标签bean:define
查看>>
asp.net mvc 处理”从客户端中检测到有潜在危险的 request.form 值。”
查看>>
精品素材:20个精美的免费Flash整站模板下载
查看>>
Mars之android的Handler(2)
查看>>
编程?事业?
查看>>
无论怎么样都不能成为你对别人发脾气的理由
查看>>
asp.net学习之ado.net(无连接模式中的DataAdapter)
查看>>
请问大家ndk中LOCAL_SHARED_LIBRARIES LOCAL_LDLIBS什么区别
查看>>