¡Ayúdanos a traducir esta Web y consigue licencias gratis!
Usuario anónimo  |  Ingresar  |  Regístrate

TabbedMaxContent

El TabbedMaxContent forma parte del GMaps Utility Library.

Infowindow que se maximiza y dentro tiene tabs.




Code.aspx
<cc1:GMap ID="GMap1" runat="server" />
Code.aspx.cs
List<GInfoWindowTabbedMaxContentTab> tabs = new List<GInfoWindowTabbedMaxContentTab>();

tabs.Add(new GInfoWindowTabbedMaxContentTab("Label 1", "Html 1"));
tabs.Add(new GInfoWindowTabbedMaxContentTab("Label 2", "Html 2"));
tabs.Add(new GInfoWindowTabbedMaxContentTab("Label 3", "Html 3"));
tabs.Add(new GInfoWindowTabbedMaxContentTab("Label 4", "Html 4"));

GInfoWindowTabbedMaxContent infoWindowTabbedMaxContent = new GInfoWindowTabbedMaxContent(new GMarker(new GLatLng(40, 0)), tabs, true);

infoWindowTabbedMaxContent.minHtml = "min HTML";
infoWindowTabbedMaxContent.summaryHtml = "summary <b>HTML</b>";

GMap1.addInfoWindowTabbedMaxContent(infoWindowTabbedMaxContent);
Powered by Subgurim.NET