David,
I created a brand new web site, all default parameters. Added a map control to the page. Checked the bin folder, the MapSuiteCode.dll and WebEdition.dll assemblies are both 3.0.2.0. The NetTopologySuite.dll assembly is version is 1.7.1.27811. I copied the AddLayersForSimpleRenderUSA method from your samples to a new class in the App_Code folder and added the following code to the Page_Load event of the Default.aspx code-behind file:
If Not IsPostBack() Then
Map1.MapUnit = GeographyUnit.DecimalDegree
MapHelpers.AddLayersForSimpleRenderUSA(Map1)
Map1.PanZoomBar.Enabled = True
Map1.LayerSwitcher.Enabled = True
Map1.MousePosition.Enabled = True
Map1.BackgroundMap.GoogleMap.GoogleMapType = GoogleMapType.Normal
Map1.BackgroundMap.GoogleMap.Name = "Google Map Layer"
Map1.CurrentExtent = New RectangleShape(-94.64456, 39.13578, -94.4674, 39.03605)
End If
That's the extent of what I did to this project. When I run it I get a blank, blue map window that has no navigation controls. I cannot drag or otherwise interact with the map. There is a javascript error icon on the browser (IE7) that, when clicked, displays:
Line: 74
Char: 14
Error: 'MultipleMapList' is undefined
Code: 0
URL: localhost/4263/WebSite2/Default.aspx
The "Previous" button is enabled in the javascript error window. When clicked it displays the following error:
Line: 72
Char: 1
Error: 'JsonParser' is undefined
Code: 0
URL: localhost/4263/WebSite2/Default.aspx
Thanks for your help,
Bob Mc.