Here is the code I am using:<br><br><script src="<a href="http://www.openlayers.org/api/OpenLayers.js">http://www.openlayers.org/api/OpenLayers.js</a>"></script><br><script><br>   function init() {<br>
     map = new OpenLayers.Map("TaxiBusMap");<br>     var mapnik         = new OpenLayers.Layer.OSM();<br>     var fromProjection = new OpenLayers.Projection("EPSG:4326");   // Transform from WGS 1984<br>
     var toProjection   = new OpenLayers.Projection("EPSG:900913"); // to Spherical Mercator Projection<br>     var position       = new OpenLayers.LonLat(-71.3002,46.0912).transform( fromProjection, toProjection);<br>
     var zoom           = 16; <br> <br>     map.addLayer(mapnik);<br>     map.setCenter(position, zoom );<br>     var pois = new OpenLayers.Layer.Text( "My Points",<br>                 { location:"./taxiBusFile.txt",<br>
                   projection: map.displayProjection<br>                 });<br>    map.addLayer(pois);<br>    }<br></script><br><br></head><br><body onload="init();"><br><br><div id="TaxiBusMap" style="height:250px;width:509px"></div><br>
<br><br><div class="gmail_quote">2012/8/23 David Fawcett <span dir="ltr"><<a href="mailto:david.fawcett@gmail.com" target="_blank">david.fawcett@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
What js mapping library are you using?<br>
<br>
  You might want to look at Leaflet and/or OpenLayers.<br>
<div class="im"><br>
<br>
<br>
On Aug 23, 2012, at 6:30 PM, Gilles Pelletier <<a href="mailto:pellgill@gmail.com">pellgill@gmail.com</a>> wrote:<br>
<br>
> I succeded in imbeding openstreetmap into a web page and placing a point of interest. Works great in firefox. The problem is as usual with internet explorer. I get a white empty square where the map should be. Any ideas?<br>

</div>> _______________________________________________<br>
> newbies mailing list<br>
> <a href="mailto:newbies@openstreetmap.org">newbies@openstreetmap.org</a><br>
> <a href="http://lists.openstreetmap.org/listinfo/newbies" target="_blank">http://lists.openstreetmap.org/listinfo/newbies</a><br>
<br>
_______________________________________________<br>
newbies mailing list<br>
<a href="mailto:newbies@openstreetmap.org">newbies@openstreetmap.org</a><br>
<a href="http://lists.openstreetmap.org/listinfo/newbies" target="_blank">http://lists.openstreetmap.org/listinfo/newbies</a><br>
</blockquote></div><br>