This is from the MapView example, which worked well when I was testing. The Long and Lat need to be updated to your location for the PosLat PosLong and the long and lat (39.12345 -104.12345). I believe the supplied parameters in PosLat etc. are somewhere near Paris France.
Dim PosLat as List
Dim PosLong as list
PosLat.Initialize
PosLong.Initialize
PosLat.Add(46.1348)
PosLong.Add(7.1132)
PosLat.Add(46.1364)
PosLong.Add(7.1122)
PosLat.Add(46.1380)
PosLong.Add(7.1152)
PosLat.Add(46.1386)
PosLong.Add(7.1147)
PosLat.Add(46.1395)
PosLong.Add(7.1170)
PosLat.Add(46.1409)
PosLong.Add(7.1189)
Dim MapWebView as Webview
MapWebView.Initialize("")
Activity.AddView(MapWebView,0,50,100%x,88%y)
If loc.Latitude = 0 Then
loc.Latitude = 39.12345
End If
If loc.Longitude = 0 Then
loc.Longitude = -104.12345
End If
ShowMap(39.12345, -104.12345, 15, True, True, True, "TOP_LEFT", True, PosLat, PosLong, True, True, "#ff0000", 0.5, 3)