I am new to this control and am trying to figure some things out. I have the followig code below.
The map renders fine, but no controls are showing up. Also the zoom does not seem to be working. I know the Lat, Long is a location in Georgia, USA, but all I get is water on the map. What am I doing wrong? Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim MyLatLong As New Reimers.Map.GoogleLatLng() MyLatLong.Latitude = 34.143657 MyLatLong.Longitude = -84.117689 mpMicad.Height = 645 mpMicad.Width = 867 mpMicad.Zoom = 13 mpMicad.SetCenter(MyLatLong) mpMicad.AddControl(New Controls.GoogleLargeMapControl) mpMicad.AddControl(New Controls.GoogleNormalMapTypeControl) 'Me.mpMicad.Center = MyLatLong End Sub --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
