Hi All,<br><br>I&#39;ve solved my GML error (which was that I was zoomed in too far to see my vectors because I hadn&#39;t adjusted the extents). However, my scale bar shows NaN M and NaN ft, although the X, Y coordinates seem to be valid. Any suggestions? I believe this should have something to do with projections and my baselayer, but I&#39;m not sure what.<br>
<br><br>var lon = 675833.7195;<br>        var lat = 3740782.6657;<br>        var zoom = 2;<br>        var map, layer;<br>        var options = {<br>        maxResolution: &#39;auto&#39;,<br>        maxExtent: new OpenLayers.Bounds(568446.75, 3565307.25, 813860.25, 3781736.25),<br>
        projection: new OpenLayers.Projection(&quot;EPSG:22332&quot;),<br>        units: &quot;meters&quot;<br>        };<br>//Map Creation<br>   function init(){<br>           map = new OpenLayers.Map(&#39;map&#39;, options);<br>
        var topo = new OpenLayers.Layer.GML(&quot;Jerba Topography&quot;, &quot;topo.gml&quot;,  {isBaseLayer: true});<br>