.Net语言 APP开发平台——Smobiler学习日志(在手机应用开发中如何实现跳转地图)

生也有涯,知也无涯。这篇文章主要讲述.Net语言 APP开发平台——Smobiler学习日志:在手机应用开发中如何实现跳转地图相关的知识,希望能为你提供帮助。
 
一、目标样式

.Net语言 APP开发平台——Smobiler学习日志(在手机应用开发中如何实现跳转地图)

文章图片

我们要实现上图中的效果,需要如下的操作:
二、跳转地图代码
VB: Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.ClickMe.Gps1.GetGpsAsyn(Sub(s As Object, args As GPSData) Me.ShowMap(args.Latitude, args.Longitude, "当前位置") End Sub)End Sub

C#: private void Button1_Click(object sender, EventArgs e) { this.gps1.GetGpsAsyn(); } private void gps1_GotLocation(object sender, GPSData e) { this.ShowMap(e.Latitude, e.Longitude, "当前位置"); }

【.Net语言 APP开发平台——Smobiler学习日志(在手机应用开发中如何实现跳转地图)】注:用GPS控件获取当前的经度、纬度
三.Smobiler窗体设计界面显示效果
.Net语言 APP开发平台——Smobiler学习日志(在手机应用开发中如何实现跳转地图)

文章图片

四、手机效果显示
.Net语言 APP开发平台——Smobiler学习日志(在手机应用开发中如何实现跳转地图)

文章图片
 
.Net语言 APP开发平台——Smobiler学习日志(在手机应用开发中如何实现跳转地图)

文章图片


    推荐阅读