Básico 2
GMap_Height y GMap_Width han desaparecido definitivamente. Ahora hay que usar Width y Height del mismo modo que se usa en cualquier otro control.
Code.aspx
<cc1:GMap ID="GMap1" runat="server" Width="90%" Height="250px" />
<cc1:GMap ID="GMap2" runat="server" />
Code.aspx.cs
GMap1.setCenter(new GLatLng(41, 2), 6);
GMap2.Height = 456;
GMap2.Width = 300;
GMap2.setCenter(new GLatLng(20, 15), 2);