Sub btn4_Clicked(Target As String)
' gm1.InitializeAsPanorama(page, "gm1", 44.8925288, 10.9189963, 1, 300, 45, 0)
' gm1.Refresh
' you have already declared and inited your map in connectpage... get a reference to it...
Dim gm as ABMGoogleMap = page.component("gm1")
gm.SetLocation(44.8925288, 10.9189963)
' you could even add Markers... Another way to show map points - and many of them
' gm.AddMarker( "mark1" , lat, lon, ABM.COLOR_RED, nam1&" - at: "&DateTime.Time(dt)&" Value: "&NumberFormat2( sp , 1 , 1 , 1, False)&"" , legend)
gm.refresh
' where in the heck is this label declared??? Does it not give you an error that lbl1 is not found??
lbl1.Text = "CHANGED"
lbl1.Refresh
' page.refresh ' may be needed here as well...
End Sub