<html><head>

<link media="all" type="text/css" href="/webmail/static/deg/css/wysiwyg-3933289048.css" rel="stylesheet"></head><body>

Hi All,<br>
<br>
I am new to GeoExt. I have been trying to use the tutorials and examples, but I can't seem to get past a simple problem.<br>
<br>
I tried to use this simple vector display code from the tutorial, and it doesn't work in Firefox or IE.<br>
<br>
&lt;html&gt;<br>
&lt;head&gt;<br>
&lt;title&gt; A Basic GeoExt Page &lt;/title&gt;<br>
&lt;script src="ext-3.2.0/adapter/ext/ext-base.js" type="text/javascript"&gt;&lt;/script&gt;<br>
&lt;script src="ext-3.2.0/ext-all.js"&nbsp; type="text/javascript"&gt;&lt;/script&gt;<br>
&lt;script src="OpenLayers/OpenLayers.js" type="text/javascript"&gt;&lt;/script&gt;<br>
&lt;script src="GeoExt/script/GeoExt.js" type="text/javascript"&gt;&lt;/script&gt;<br>
&lt;script type="text/javascript"&gt;<br>
var vectorLayer = new OpenLayers.Layer.Vector();<br>
for (var i = 0; i &lt; 10; i++){<br>
&nbsp;&nbsp;&nbsp; var x = -180 + Math.random() * 360;<br>
&nbsp;&nbsp;&nbsp; var y = -90 + Math.random() * 180;<br>
&nbsp;&nbsp;&nbsp; var numSides = 3 + Math.round(Math.random() * 6);<br>
&nbsp;&nbsp;&nbsp; vectorLayer.addFeature(<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new OpenLayers.Feature.Vector(<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OpenLayers.Geometry.Polygon.createRegularPolygon(<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new OpenLayers.Geometry.Point(x, y),<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; numSides)));<br>
}<br>
var map = new OpenLayers.Map();<br>
map.addLayer(vectorLayer);<br>
&nbsp;&lt;/script&gt;<br>
&lt;/head&gt;<br>
&lt;body&gt;<br>
&lt;div id="gxmap"&gt;&lt;/div&gt;<br>
&lt;/body&gt;<br>
&lt;/html&gt;<br>
<br>
I've tried some other examples to try and display KML and GML files but
they haven't worked. Actually the Sundials example worked when I had
the WMS baselayer and the GML,&nbsp; but when I commented out the baselayer,
the GML wouldn't show by itself. Can you display a KML/GML file by
itself without a WMS baselayer?<br>
<br>
Any help would be appreciated.<br>
Thanks<br></body></html>