Thanks Brent :)<br><br>No the server has access to read it for sure .. if u follow the link of Mapserv it does work :(<br><br>Btw what is the constructor so it it drawn please?<br><br>Thanks<br><br><div><span class="gmail_quote">
On 11/17/07, <b class="gmail_sendername">Brent Pedersen</b> &lt;<a href="mailto:bpederse@gmail.com">bpederse@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0; margin-left: 0.80ex; border-left-color: #cccccc; border-left-width: 1px; border-left-style: solid; padding-left: 1ex">
hi, you&#39;re never telling the map to draw.<br>i just went to your site and ran:<br>map.zoomToMaxExtent()<br>in firebug. then i get pink tiles. viewing one of them gives this error.<br><br>msLoadMap(): Unable to access file. (\home\yancho\public_html\nc\sample.map)
<br><br>which probably means the webserver doesnt have permission to read that file.<br><br>On Nov 17, 2007 11:43 AM, Matthew Pulis &lt;<a href="mailto:mpulis@gmail.com">mpulis@gmail.com</a>&gt; wrote:<br>&gt; Just would like to add that I changed the code following some more tutorials
<br>&gt; I found / examples thanks to Chris, and this is the new code :<br>&gt;<br>&gt;<br>&gt; &lt;html&gt;<br>&gt; &lt;head&gt;<br>&gt; &lt;title&gt;OpenLayers Example&lt;/title&gt;<br>&gt; &lt;script src=&quot;<a href="http://yancho.no-ip.org/~yancho/OpenLayers.js">
http://yancho.no-ip.org/~yancho/OpenLayers.js</a>&quot;&gt;&lt;/script&gt;<br>&gt;<br>&gt;<br>&gt; &lt;script defer=&quot;defer&quot; type=&quot;text/javascript&quot;&gt;<br>&gt; //var lon = 164;<br>&gt; //var lat = 162;<br>
&gt; var map, layer;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; function init(){<br>&gt; var options =<br>&gt; {<br>&gt; maxExtent: new OpenLayers.Bounds(625102.34974933861,215593.742071<br>&gt; ,656343.383138 ,239014.742071
),<br>&gt; maxResolution: 302051/1024,<br>&gt; zoom: 0,<br>&gt; projection: &quot;EPSF:4326&quot;,<br>&gt; //&#39;controls&#39;: [],<br>&gt; units: &quot;m&quot;,<br>&gt; numZoomLevels: 12<br>&gt; };<br>&gt; map = new OpenLayers.Map
(&quot;map&quot;, options);<br>&gt; //map.addControl(new OpenLayers.Control.MousePosition ());<br>&gt; map.addControl(new OpenLayers.Control.LayerSwitcher());<br>&gt;<br>&gt;<br>&gt; layer = new OpenLayers.Layer.MapServer
( &quot;Streets Layer&quot;,<br>&gt; &quot;<br>&gt; <a href="http://yancho.no-ip.org/~yancho/cgi-bin/mapserv?map=\\home\\yancho\\public_html\\nc\\sample.map&amp;">http://yancho.no-ip.org/~yancho/cgi-bin/mapserv?map=\\home\\yancho\\public_html\\nc\\sample.map&amp;
</a>&quot;,<br>&gt; {layers : &#39;streets&#39;}, {gutter: 15});<br>&gt; map.addLayer(layer);<br>&gt;<br>&gt; //map.setCenter(new OpenLayers.LonLat (lon, lat), zoom);<br>&gt; map.addControl( new OpenLayers.Control.LayerSwitcher
() );<br>&gt;<br>&gt; }<br>&gt;<br>&gt;<br>&gt;<br>&gt; &lt;/script&gt;<br>&gt; &lt;/head&gt;<br>&gt; &lt;body onload=&quot;init()&quot;&gt;<br>&gt; &lt;div style=&quot;width:800px;height:600px&quot; id=&quot;map&quot;&gt;&lt;/div&gt;
<br>&gt;<br>&gt; &lt;/html&gt;<br>&gt;<br>&gt;<br>&gt; Pastebin : <a href="http://pastebin.com/f50f62c3f">http://pastebin.com/f50f62c3f</a><br>&gt;<br>&gt; The problem is that when I load the page, there is just the controls, and
<br>&gt; the map is not loading. There are no JavaScript errors and I think its just<br>&gt; a problem of the loading of the map.<br>&gt;<br>&gt;<br>&gt; Link to page : <a href="http://yancho.no-ip.org/~yancho/openl.html">
http://yancho.no-ip.org/~yancho/openl.html</a><br>&gt;<br>&gt; Link to how I load the map on mapserv :<br>&gt; <a href="http://yancho.no-ip.org/~yancho/cgi-bin/mapserv?map=%2Fhome%2Fyancho%2Fpublic_html%2Fnc%2Fsample.map&amp;imgext=637373.285472+230666.856430+647786.963271+238473.856432&amp;imgxy=200.0+150.0&amp;zoom=0&amp;layer=hospitals&amp;layer=streets&amp;layer=firestations&amp;layer=majorroads&amp;layer=railroads&amp;mode=browse&amp;img.x=164&amp;img.y=62">
http://yancho.no-ip.org/~yancho/cgi-bin/mapserv?map=%2Fhome%2Fyancho%2Fpublic_html%2Fnc%2Fsample.map&amp;imgext=637373.285472+230666.856430+647786.963271+238473.856432&amp;imgxy=200.0+150.0&amp;zoom=0&amp;layer=hospitals&amp;layer=streets&amp;layer=firestations&amp;layer=majorroads&amp;layer=railroads&amp;mode=browse&amp;img.x=164&amp;img.y=62
</a><br>&gt;<br>&gt; Any help will be much appreciated. Thanks<br>&gt;<br>&gt; Regards<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; On 11/17/07, Christian López Espínola &lt; <a href="mailto:penyaskito@gmail.com">penyaskito@gmail.com
</a>&gt; wrote:<br>&gt; &gt; Hi Matthew,<br>&gt; &gt;<br>&gt; &gt; Your div is named &#39;map&#39;, and you are using<br>&gt; &gt;<br>&gt; &gt; var map = new OpenLayers.Map(&quot;basemap&quot;, options);<br>&gt; &gt;<br>&gt; &gt; This search for a basemap div, but it doesn&#39;t exist.
<br>&gt; &gt; Change the div id, or change that line of code.<br>&gt; &gt;<br>&gt; &gt; Hope this helps.<br>&gt; &gt;<br>&gt; &gt; On 11/17/07, Matthew Pulis &lt;<a href="mailto:mpulis@gmail.com">mpulis@gmail.com</a>&gt; wrote:
<br>&gt; &gt; &gt; Hi,<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; I am a fairly new user to OpenLayers, and this is my project aims :<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; - Want to create a Basemap of streets which is a Vector layer and
<br>&gt; loading it<br>&gt; &gt; &gt; as a MapServ Layer<br>&gt; &gt; &gt; * create a start / end point<br>&gt; &gt; &gt; * create the route<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; (* are not yet started)<br>&gt; &gt; &gt;<br>
&gt; &gt; &gt; I am having a problem since after going through the Javascript docs, I<br>&gt; fixed<br>&gt; &gt; &gt; many of my syntax errors, but am still plagued with this one :<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; this.div
 has no properties<br>&gt; &gt; &gt; callback(&quot;basemap&quot;, Object)OpenLayers.js (line 464)<br>&gt; &gt; &gt; Class()OpenLayers.js (line 57)<br>&gt; &gt; &gt; init()openl.html (line 24)<br>&gt; &gt; &gt; onload(load )openl.html (line 1)
<br>&gt; &gt; &gt; [Break on this error] this.active=false;return<br>&gt; &gt; &gt; true;},callback:function(name,args){if(this.callbacks [n...<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Error found @ OpenLayers.js (line 464) .. Error reporting by FireBug of
<br>&gt; &gt; &gt; FireFox<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; The code I am working upon is a mix of viewsourcing some pages and the<br>&gt; &gt; &gt; tutorials :<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; &lt;html&gt;<br>&gt; &gt; &gt; &lt;head&gt;
<br>&gt; &gt; &gt;&nbsp;&nbsp;&lt;title&gt;OpenLayers Example&lt;/title&gt;<br>&gt; &gt; &gt;&nbsp;&nbsp;&lt;script<br>&gt; &gt; &gt; src=&quot;<a href="http://yancho.no-ip.org/~yancho/OpenLayers.js">http://yancho.no-ip.org/~yancho/OpenLayers.js
</a> &quot;&gt;&lt;/script&gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;&nbsp;&nbsp;&lt;script defer=&quot;defer&quot; type=&quot;text/javascript&quot;&gt;<br>&gt; &gt; &gt;&nbsp;&nbsp;function init(){<br>&gt; &gt; &gt;&nbsp;&nbsp;var options =
<br>&gt; &gt; &gt;&nbsp;&nbsp;{<br>&gt; &gt; &gt;&nbsp;&nbsp;maxExtent: new OpenLayers.Bounds (625102.34974933861,215593.742071<br>&gt; &gt; &gt; ,656343.383138 ,239014.742071 ),<br>&gt; &gt; &gt;&nbsp;&nbsp;maxResolution: 302051/1024,<br>&gt; &gt; &gt;&nbsp;&nbsp;zoom: 2,
<br>&gt; &gt; &gt;&nbsp;&nbsp;projection: &quot;WGS84&quot;,<br>&gt; &gt; &gt;&nbsp;&nbsp;&#39;controls&#39;: [],<br>&gt; &gt; &gt;&nbsp;&nbsp;units: &quot;m&quot;,<br>&gt; &gt; &gt;&nbsp;&nbsp;numZoomLevels: 12<br>&gt; &gt; &gt;&nbsp;&nbsp;};<br>&gt; &gt; &gt;&nbsp;&nbsp;var map = new 
OpenLayers.Map(&quot;basemap&quot;, options);<br>&gt; &gt; &gt;&nbsp;&nbsp;var options2 =<br>&gt; &gt; &gt;&nbsp;&nbsp;( {name : &quot;Streets Layer&quot;},<br>&gt; &gt; &gt;&nbsp;&nbsp;{url : &quot; <a href="http://yancho.no-ip.org/~yancho/cgi-bin/mapserv">
http://yancho.no-ip.org/~yancho/cgi-bin/mapserv</a>&quot;},<br>&gt; &gt; &gt;&nbsp;&nbsp;{params : &quot;\\home\\yancho\\public_html\\nc\\sample.map&quot;},<br>&gt; &gt; &gt;&nbsp;&nbsp;{options : []}<br>&gt; &gt; &gt;&nbsp;&nbsp;);<br>&gt; &gt; &gt;&nbsp;&nbsp;
map.addLayer (new OpenLayers.Layer.MapServer (&quot;streets&quot;, options2));<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;&nbsp;&nbsp;}<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;&nbsp;&nbsp;&lt;/script&gt;<br>&gt; &gt; &gt;&nbsp;&nbsp;&lt;/head&gt;<br>&gt; &gt; &gt; &lt;body onload=&quot;init()&quot;&gt;
<br>&gt; &gt; &gt; &lt;div style=&quot;width:800px;height:600px&quot; id=&quot;map&quot;&gt;&lt;/div&gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; &lt;/html&gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; If you want the code with syntax highlighted you can go here :
<br>&gt; &gt; &gt; <a href="http://pastebin.com/f218a9fc9">http://pastebin.com/f218a9fc9</a><br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; I would be extremely happy if you manage to point me to any errors I am<br>
&gt; &gt; &gt; doing, and maybe some other reading I should do.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Thanks alot for your time in reading my post<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Regards<br>&gt; &gt; &gt;
<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Matthew<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; --<br>&gt; &gt; &gt; Matthew Pulis<br>&gt; &gt; &gt; URL : <a href="http://www.solutions-lab.net">http://www.solutions-lab.net</a><br>&gt; &gt; &gt; MSN : pulis_matthew[@]hotmail.com
<br>&gt; &gt; &gt; ICQ : 145951110<br>&gt; &gt; &gt; Skype : <a href="http://solutions-lab.net">solutions-lab.net</a><br>&gt; &gt; &gt; _______________________________________________<br>&gt; &gt; &gt; Users mailing list<br>
&gt; &gt; &gt; <a href="mailto:Users@openlayers.org">Users@openlayers.org</a><br>&gt; &gt; &gt; <a href="http://openlayers.org/mailman/listinfo/users">http://openlayers.org/mailman/listinfo/users</a><br>&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; --<br>&gt; &gt; Regards,<br>&gt; &gt;<br>&gt; &gt; Christian López Espínola<br>&gt; &gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; --<br>&gt;<br>&gt;<br>&gt; Matthew Pulis<br>&gt; URL : 
<a href="http://www.solutions-lab.net">http://www.solutions-lab.net</a><br>&gt; MSN : pulis_matthew[@]hotmail.com<br>&gt; ICQ : 145951110<br>&gt; Skype : <a href="http://solutions-lab.net">solutions-lab.net</a><br>&gt; _______________________________________________
<br>&gt; Users mailing list<br>&gt; <a href="mailto:Users@openlayers.org">Users@openlayers.org</a><br>&gt; <a href="http://openlayers.org/mailman/listinfo/users">http://openlayers.org/mailman/listinfo/users</a><br>&gt;<br>
&gt;<br></blockquote></div><br><br clear="all"><br>-- <br>Matthew Pulis<br>URL : <a href="http://www.solutions-lab.net">http://www.solutions-lab.net</a><br>MSN : pulis_matthew[@]hotmail.com<br>ICQ : 145951110<br>Skype : <a href="http://solutions-lab.net">
solutions-lab.net</a>