<div>Hi In your code you didn&#39;t load the stylesheet containing the class smallmap ,so you have to load the file styles.css located in the examples directory of OL,  or add the following line:</div><div><span class="Apple-style-span" style="font-family: -webkit-monospace; white-space: pre-wrap;"><br>
</span></div><div><span class="Apple-style-span" style="font-family: -webkit-monospace; white-space: pre-wrap; "><span class="webkit-html-tag">&lt;style <span class="webkit-html-attribute-name">type</span>=&quot;<span class="webkit-html-attribute-value">text/css</span>&quot;&gt;</span> </span><br>
</div><div><div>.smallmap {</div><div>    width: 600px;</div><div>    height: 300px;</div><div>    border: 1px solid #ccc;</div><div>}</div></div><div><span class="Apple-style-span" style="font-family: -webkit-monospace; white-space: pre-wrap; "> <span class="webkit-html-tag">&lt;/style&gt;</span> </span><br>
</div><div><br></div>I had the same problem (but using xhtml and JSF)  and I fixed changing the style of the div map,<div><br></div><div>I&#39;m using smallmap and work properly </div><div><br></div><div><div>But it doesn&#39;t work with this other</div>
<div><br></div><div><div>.other{</div><div><span class="Apple-tab-span" style="white-space: pre; ">        </span>width:60%;</div><div><span class="Apple-tab-span" style="white-space: pre; ">        </span>height: 60%;</div><div><span class="Apple-tab-span" style="white-space: pre; ">        </span>border: 1px solid black; </div>
<div>}</div><div><br></div><div>Regards</div><div>Nacho</div><div><br></div><div>PD: Try to use firebug to check if the stylesheet is loaded properly</div></div></div><br><div class="gmail_quote">On Tue, Mar 17, 2009 at 10:52 AM, sun761980 <span dir="ltr">&lt;<a href="mailto:sun761980@hotmail.com">sun761980@hotmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><br>
Hi<br>
<br>
I am using Visual Studio 2005 and I am also facing a similar problem.<br>
<br>
I just used the sample EXAMPLE1.htm file into a aspx code. When i remove<br>
this DOCTYPE i see the map component with zoomin and zoom out icon. When i<br>
add this, the map component does not appear.<br>
<br>
Below is the code<br>
<br>
&lt;%@ Page Language=&quot;VB&quot; AutoEventWireup=&quot;false&quot; CodeFile=&quot;Default.aspx.vb&quot;<br>
Inherits=&quot;_Default&quot; %&gt;<br>
<br>
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;<br>
&quot;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&quot;&gt;<br>
<br>
&lt;html xmlns=&quot;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&quot; &gt;<br>
<br>
&lt;head runat=&quot;server&quot;&gt;<br>
    &lt;title&gt;Integrating OpenLayers in .NET&lt;/title&gt;<br>
&lt;script src=&quot;OpenLayers.js&quot;&gt;&lt;/script&gt;<br>
&lt;script type=&quot;text/javascript&quot;&gt;<br>
<br>
<br>
        //alert(&quot;Open Layer Method&quot;);<br>
        // making this a global variable so that it is accessible for<br>
        // debugging/inspecting in Firebug<br>
        var map = null;<br>
<br>
        function init(){<br>
<br>
            map = new OpenLayers.Map(&#39;map&#39;);<br>
            //alert(<a href="http://map.id" target="_blank">map.id</a>);<br>
            //alert(map.innerText);<br>
<br>
            var ol_wms = new OpenLayers.Layer.WMS(<br>
                &quot;OpenLayers WMS&quot;,<br>
                &quot;<a href="http://labs.metacarta.com/wms/vmap0" target="_blank">http://labs.metacarta.com/wms/vmap0</a>&quot;,<br>
                {layers: &#39;basic&#39;}<br>
            );<br>
<br>
            var jpl_wms = new OpenLayers.Layer.WMS(<br>
                &quot;NASA Global Mosaic&quot;,<br>
                &quot;<a href="http://t1.hypercube.telascience.org/cgi-bin/landsat7" target="_blank">http://t1.hypercube.telascience.org/cgi-bin/landsat7</a>&quot;,<br>
                {layers: &quot;landsat7&quot;}<br>
            );<br>
<br>
            var dm_wms = new OpenLayers.Layer.WMS(<br>
                &quot;DM Solutions Demo&quot;,<br>
                &quot;<a href="http://www2.dmsolutions.ca/cgi-bin/mswms_gmap" target="_blank">http://www2.dmsolutions.ca/cgi-bin/mswms_gmap</a>&quot;,<br>
                {<br>
                    layers: &quot;bathymetry,land_fn,park,drain_fn,drainage,&quot; +<br>
                            &quot;prov_bound,fedlimit,rail,road,popplace&quot;,<br>
                    transparent: &quot;true&quot;, format: &quot;image/png&quot;},<br>
                {<br>
                    minResolution: 0.17578125,<br>
                    maxResolution: 0.703125<br>
                }<br>
            );<br>
<br>
            map.addLayers([ol_wms, jpl_wms, dm_wms]);<br>
            map.addControl(new OpenLayers.Control.LayerSwitcher());<br>
            map.zoomToMaxExtent();<br>
        }<br>
<br>
<br>
&lt;/script&gt;<br>
&lt;/head&gt;<br>
<br>
&lt;body onload=&quot;init()&quot;&gt;<br>
    &lt;h1 id=&quot;title&quot;&gt;OpenLayers Example&lt;/h1&gt;<br>
    &lt;div id=&quot;tags&quot;&gt;&lt;/div&gt;<br>
    &lt;p id=&quot;shortdesc&quot;&gt;<br>
        Demonstrate a simple map with an overlay that includes layer<br>
switching controls.<br>
    &lt;/p&gt;<br>
    &lt;div id=&quot;map&quot; class=&quot;smallmap&quot;&gt;&lt;/div&gt;<br>
    &lt;div id=&quot;docs&quot;&gt;&lt;/div&gt;<br>
  &lt;/body&gt;<br>
&lt;/html&gt;<br>
<br>
Regards<br>
Sunny<br>
<br>
<br>
<br>
<br>
vsaquicela wrote:<br>
&gt;<br>
&gt; I don&#39;t understand.<br>
&gt; How????<br>
&gt;<br>
&gt;<br>
&gt; Ruben Pardo-2 wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hi everybody,<br>
&gt;&gt; i solve the problem, it seems to be a wrong path in the images directory.<br>
&gt;&gt; Thanks a lot .<br>
&gt;&gt;<br>
&gt;&gt; Rubén P.<br>
&gt;&gt;<br>
&gt;&gt; 2007/6/28, Christian López Espínola &lt;<a href="mailto:penyaskito@gmail.com">penyaskito@gmail.com</a>&gt;:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I can&#39;t reproduce the bug with a example.<br>
&gt;&gt;&gt; What browser are you using? Do the problem occurs in other browsers?<br>
&gt;&gt;&gt; I can add that in my application i&#39;m using XHTML Strict, but I think<br>
&gt;&gt;&gt; that using HTML 4 mustn&#39;t be a problem.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Cheers from the hot Seville :)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On 6/28/07, Ruben Pardo &lt;<a href="mailto:correosig@gmail.com">correosig@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt; Hi,<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; I&#39;m checking my html source generated but it doesn&#39;t work. I&#39;m using<br>
&gt;&gt;&gt; &gt; OpenLayers 2.4 API, and still have the same problem. When i remove the<br>
&gt;&gt;&gt; tag<br>
&gt;&gt;&gt; &gt; &lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot; &quot;<br>
&gt;&gt;&gt; &gt; <a href="http://www.w3.org/TR/html4/loose.dtd" target="_blank">http://www.w3.org/TR/html4/loose.dtd</a>&quot; &gt; it works fine.<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; My code  :...........<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; &lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot; &quot;<br>
&gt;&gt;&gt; &gt; <a href="http://www.w3.org/TR/html4/loose.dtd" target="_blank">http://www.w3.org/TR/html4/loose.dtd</a>&quot; &gt;<br>
&gt;&gt;&gt; &gt; &lt;html &gt;<br>
&gt;&gt;&gt; &gt;     &lt;head&gt;<br>
&gt;&gt;&gt; &gt;         &lt;meta content=&quot;text/html;charset=ISO-8859-1&quot;<br>
&gt;&gt;&gt; &gt; http-equiv=&quot;Content-Type&quot;&gt;<br>
&gt;&gt;&gt; &gt;     &lt;/head&gt;<br>
&gt;&gt;&gt; &gt;     &lt;body onload=&quot;init();&quot;  &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;      &lt;style type=&quot;text/css&quot;&gt;<br>
&gt;&gt;&gt; &gt;         #map {<br>
&gt;&gt;&gt; &gt;             width: 800px;<br>
&gt;&gt;&gt; &gt;             height: 500px;<br>
&gt;&gt;&gt; &gt;             border: 1px solid black;<br>
&gt;&gt;&gt; &gt;         }<br>
&gt;&gt;&gt; &gt;            &lt;/style&gt;&lt;script src=&quot;js/lib/OpenLayers.js&quot;<br>
&gt;&gt;&gt; &gt; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; &lt;script<br>
&gt;&gt;&gt; &gt; type=&quot;text/javascript&quot; &gt;<br>
&gt;&gt;&gt; &gt;   &lt;!--<br>
&gt;&gt;&gt; &gt;                var map,layer;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;          function init(){<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;            map = new OpenLayers.Map(&#39;map&#39;, { controls: [],tileSize:<br>
&gt;&gt;&gt; new<br>
&gt;&gt;&gt; &gt; OpenLayers.Size(500,500) });<br>
&gt;&gt;&gt; &gt;           layer = new OpenLayers.Layer.MapServer( &quot;OpenLayers WMS&quot;,&quot;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; <a href="http://192.168.212.20:84/cgi-bin/mapserv.exe?map=/ms4w/apps/prbmosaico/htdocs/prbmosaico.map" target="_blank">http://192.168.212.20:84/cgi-bin/mapserv.exe?map=/ms4w/apps/prbmosaico/htdocs/prbmosaico.map</a><br>

&gt;&gt;&gt; &quot;,{layers:<br>
&gt;&gt;&gt; &gt; &#39;PARCELASDE&#39;, TRANSPARENT: &#39;true&#39;},{ maxExtent: new<br>
&gt;&gt;&gt; &gt; OpenLayers.Bounds(186555.49,4136068.22,211516.81,4156763.12),<br>
&gt;&gt;&gt; maxResolution:<br>
&gt;&gt;&gt; &gt; 104} );<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;            map.addControl(new OpenLayers.Control.PanZoomBar());<br>
&gt;&gt;&gt; &gt;            map.addControl(new OpenLayers.Control.MouseToolbar ());<br>
&gt;&gt;&gt; &gt;            map.addControl(new OpenLayers.Control.OverviewMap());<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;            map.addLayer(layer);<br>
&gt;&gt;&gt; &gt;                     if (!map.getCenter())<br>
&gt;&gt;&gt; &gt;                        map.zoomToMaxExtent();<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;          }<br>
&gt;&gt;&gt; &gt;         &lt;/script&gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;       &lt;div style=&quot;margin:0px&quot; id=&quot;map&quot;&gt;&lt;/div&gt;<br>
&gt;&gt;&gt; &gt; &lt;/body&gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; 2007/6/28, Christian López Espínola &lt; <a href="mailto:penyaskito@gmail.com">penyaskito@gmail.com</a>&gt;:<br>
&gt;&gt;&gt; &gt; &gt; Hola Ruben,<br>
&gt;&gt;&gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; The doctype mustn&#39;t be a problem with OpenLayers. I&#39;m using <a href="http://ASP.NET" target="_blank">ASP.NET</a><br>
&gt;&gt;&gt; &gt; &gt; with OpenLayers and I hadn&#39;t any problem.<br>
&gt;&gt;&gt; &gt; &gt; Please check the HTML source generated by your application and if<br>
&gt;&gt;&gt; you<br>
&gt;&gt;&gt; &gt; &gt; can&#39;t find the solution, post a piece.<br>
&gt;&gt;&gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; Hope this helps<br>
&gt;&gt;&gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; On 6/28/07, Ruben Pardo &lt;<a href="mailto:correosig@gmail.com">correosig@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt; &gt; &gt; Hi everybody,<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt; I&#39;ve got a problem  showing controls with OpenLayers when i put a<br>
&gt;&gt;&gt; &gt; doctype on<br>
&gt;&gt;&gt; &gt; &gt; &gt; my html page.<br>
&gt;&gt;&gt; &gt; &gt; &gt; I&#39;m integrating OpenLayers in a custom jsf component, that<br>
&gt;&gt;&gt; autogenerate<br>
&gt;&gt;&gt; &gt; the<br>
&gt;&gt;&gt; &gt; &gt; &gt; DOCTYPE.<br>
&gt;&gt;&gt; &gt; &gt; &gt; It shows me the layers, but not the controls over the layers<br>
&gt;&gt;&gt; &gt; (PanZoomBar,<br>
&gt;&gt;&gt; &gt; &gt; &gt; Overview, etc...)<br>
&gt;&gt;&gt; &gt; &gt; &gt; It works fine when i remove the doctype in the generated code.<br>
&gt;&gt;&gt; &gt; &gt; &gt; ¿how can i solve this?<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt; Thanks a lot in advance<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt; My generated code is ...<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; ------------------------------------------------------------------<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt; &lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;<br>
&gt;&gt;&gt; &gt; &gt; &gt; &quot;<a href="http://www.w3.org/TR/html4/loose.dtd" target="_blank">http://www.w3.org/TR/html4/loose.dtd</a>&quot; &gt;--&gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt; &lt;html &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;     &lt;head&gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;         &lt;meta content=&quot;text/html;charset=ISO-8859-1&quot;<br>
&gt;&gt;&gt; &gt; &gt; &gt; http-equiv=&quot;Content-Type&quot;&gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt; &lt;/head&gt;&lt;body onload=&quot;init();&quot;&gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;      &lt;style type=&quot;text/css&quot;&gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;         #map {<br>
&gt;&gt;&gt; &gt; &gt; &gt;             width: 800px;<br>
&gt;&gt;&gt; &gt; &gt; &gt;             height: 500px;<br>
&gt;&gt;&gt; &gt; &gt; &gt;             border: 1px solid black;<br>
&gt;&gt;&gt; &gt; &gt; &gt;         }<br>
&gt;&gt;&gt; &gt; &gt; &gt;            &lt;/style&gt;&lt;script src=&quot;js/lib/OpenLayers.js&quot;<br>
&gt;&gt;&gt; &gt; &gt; &gt; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; &lt;script<br>
&gt;&gt;&gt; &gt; &gt; &gt; type=&quot;text/javascript&quot; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;   &lt;!--<br>
&gt;&gt;&gt; &gt; &gt; &gt;                var map,layer;<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;          function init(){<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;            map = new OpenLayers.Map(&#39;map&#39;, { controls:<br>
&gt;&gt;&gt; [],tileSize:<br>
&gt;&gt;&gt; new<br>
&gt;&gt;&gt; &gt; &gt; &gt; OpenLayers.Size(500,500) });<br>
&gt;&gt;&gt; &gt; &gt; &gt;           layer = new OpenLayers.Layer.MapServer( &quot;OpenLayers<br>
&gt;&gt;&gt; &gt; &gt; &gt; WMS&quot;,&quot;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; <a href="http://192.168.212.20:84/cgi-bin/mapserv.exe?map=/ms4w/apps/prbmosaico/htdocs/prbmosaico.map" target="_blank">http://192.168.212.20:84/cgi-bin/mapserv.exe?map=/ms4w/apps/prbmosaico/htdocs/prbmosaico.map</a><br>

&gt;&gt;&gt; &gt; &gt; &gt; &quot;,{layers: &#39;PARCELASDE&#39;, TRANSPARENT: &#39;true&#39;},{ maxExtent: new<br>
&gt;&gt;&gt; &gt; &gt; &gt; OpenLayers.Bounds(186555.49,4136068.22,211516.81,4156763.12),<br>
&gt;&gt;&gt; &gt; maxResolution:<br>
&gt;&gt;&gt; &gt; &gt; &gt; 104} );<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;            map.addControl(new OpenLayers.Control.PanZoomBar());<br>
&gt;&gt;&gt; &gt; &gt; &gt;            map.addControl(new OpenLayers.Control.MouseToolbar ());<br>
&gt;&gt;&gt; &gt; &gt; &gt;            map.addControl(new OpenLayers.Control.OverviewMap());<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;            map.addLayer(layer);<br>
&gt;&gt;&gt; &gt; &gt; &gt;                     if (!map.getCenter())<br>
&gt;&gt;&gt; &gt; &gt; &gt;                        map.zoomToMaxExtent ();<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;         } //--&gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;         &lt;/script&gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;       &lt;div  id=&quot;map&quot;&gt;&lt;/div&gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;        &lt;/body&gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; ------------------------------------------------------------------------------------------------------------------------------------------------------------------------<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt; _______________________________________________<br>
&gt;&gt;&gt; &gt; &gt; &gt; Users mailing list<br>
&gt;&gt;&gt; &gt; &gt; &gt; <a href="mailto:Users@openlayers.org">Users@openlayers.org</a><br>
&gt;&gt;&gt; &gt; &gt; &gt; <a href="http://openlayers.org/mailman/listinfo/users" target="_blank">http://openlayers.org/mailman/listinfo/users</a><br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; --<br>
&gt;&gt;&gt; &gt; &gt; Regards,<br>
&gt;&gt;&gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt; &gt; Christian López Espínola<br>
&gt;&gt;&gt; &gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; --<br>
&gt;&gt;&gt; Regards,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Christian López Espínola<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Users mailing list<br>
&gt;&gt; <a href="mailto:Users@openlayers.org">Users@openlayers.org</a><br>
&gt;&gt; <a href="http://openlayers.org/mailman/listinfo/users" target="_blank">http://openlayers.org/mailman/listinfo/users</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
<font color="#888888"><br>
--<br>
View this message in context: <a href="http://n2.nabble.com/Problem-showing-OpenLayer-controls-in-a-page-with-a-DOCTYPE-tp1827971p2491480.html" target="_blank">http://n2.nabble.com/Problem-showing-OpenLayer-controls-in-a-page-with-a-DOCTYPE-tp1827971p2491480.html</a><br>

Sent from the OpenLayers Users mailing list archive at Nabble.com.<br>
<br>
_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@openlayers.org">Users@openlayers.org</a><br>
<a href="http://openlayers.org/mailman/listinfo/users" target="_blank">http://openlayers.org/mailman/listinfo/users</a><br>
</font></blockquote></div><br>