<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=us-ascii">
<META content="MSHTML 6.00.2800.1106" name=GENERATOR></HEAD>
<BODY>
<DIV dir=ltr align=left><SPAN class=406451918-26042009><FONT face=Arial
color=#0000ff size=2>Hi,</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=406451918-26042009><FONT face=Arial
color=#0000ff size=2></FONT></SPAN> </DIV>
<DIV dir=ltr align=left><SPAN class=406451918-26042009><FONT face=Arial
color=#0000ff size=2>You can not load kmz-files with OpenLayers only
kml-files.</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=406451918-26042009><FONT face=Arial
color=#0000ff size=2></FONT></SPAN> </DIV>
<DIV dir=ltr align=left><SPAN class=406451918-26042009><FONT face=Arial
color=#0000ff size=2>Arnd</FONT></SPAN></DIV><BR>
<DIV class=OutlookMessageHeader lang=de dir=ltr align=left>
<HR tabIndex=-1>
<FONT face=Tahoma size=2><B>Von:</B> users-bounces@openlayers.org
[mailto:users-bounces@openlayers.org] <B>Im Auftrag von </B>Nicholas
Efremov-Kendall<BR><B>Gesendet:</B> Sonntag, 26. April 2009 20:01<BR><B>An:</B>
users@openlayers.org<BR><B>Betreff:</B> [OpenLayers-Users] Location is Full
error, loading kmz file locally.<BR></FONT><BR></DIV>
<DIV></DIV>Hi,<BR><BR>I'm trying to load a local kmz file onto a Mapserver
layer. I'm getting an error in Firebug which reads "location is full." Any
suggestions? Here is my code<BR><BR> <script
type="text/javascript"><BR>
<!--<BR>
var map, layer,
bounds;<BR>
<BR> function
init(){<BR>
map = new
OpenLayers.Map('map', { projection: new
OpenLayers.Projection("EPSG:22332"),<BR> displayProjection: new
OpenLayers.Projection("EPSG:22332"), units: "meters"}
);<BR>
layer = new
OpenLayers.Layer.MapServer( "Jerba",<BR>
"<A
href="http://localhost/cgi-bin/mapserv.exe">http://localhost/cgi-bin/mapserv.exe</A>",
{map: 'C:/ms4w/apps/jerba_apps/Jerba.map'} );<BR>
map.addLayer(layer);<BR> map.addLayer(new
OpenLayers.Layer.GML("Jerba_Topo", "kml/jerba_topo.kmz"));<BR>
map.zoomToExtent( new
OpenLayers.Bounds (629664.75, 3694383.75, 693473.18,
3754557.09));<BR>
map.addControl( new OpenLayers.Control.LayerSwitcher()
);<BR>
map.addControl( new OpenLayers.Control.MousePosition()
);<BR>
map.addControl( new OpenLayers.Control.OverviewMap()
);<BR>
map.addControl( new OpenLayers.Control.ScaleLine()
);<BR>
map.addControl(new
OpenLayers.Control.Permalink());<BR>
}<BR>
// --><BR>
</script><BR></BODY></HTML>