this is from the google maps tutorial v2
Sub MapFragment1_Ready
gmap = MapFragment1.GetMap
Dim m1 As Marker = gmap.AddMarker(10, 30, "test")
m1.Snippet = "This is the snippet"
gmap.CameraPosition.Initialize2(15.16,120.55,4.0,0.0,0.0)
gmap.CameraPosition.Initialize(15.00, 120.00,4.0)
End Sub
i have a map but the two initialize calls don't do anything
Sub MapFragment1_Ready
gmap = MapFragment1.GetMap
Dim m1 As Marker = gmap.AddMarker(10, 30, "test")
m1.Snippet = "This is the snippet"
gmap.CameraPosition.Initialize2(15.16,120.55,4.0,0.0,0.0)
gmap.CameraPosition.Initialize(15.00, 120.00,4.0)
End Sub
i have a map but the two initialize calls don't do anything