Hi,
The code snippet below does a popup on the map. It works great in IE7 and IE8, as well as FireFox. However, it does not appear in Chrome.
if( !Map1.Popups.Contains( "AlertPopup" ) ) PointShape position = new PointShape( -95.28109, 38.95363 );StringBuilder contentHtml = new StringBuilder();contentHtml.Append( "" ).Append( " The selection exceeded the allowed number of units." ).Append( "" ).Append( " Please select a smaller set" );CloudPopup samplePopup = new CloudPopup( "AlertPopup", position, contentHtml.ToString(), 250, 200);samplePopup.AutoSize = true;samplePopup.AutoPan = true;samplePopup.HasCloseButton = true;Map1.Popups.Add( samplePopup );else
{
}
Map1.Popups[ "AlertPopup" ].IsVisible = true;
Thanks,
{
}