vote up 2 vote down star
1

anyone knows a simple JS library implementing the UNZIP algorithm? No disk-file access, only zip and unzip a string of values. there are ActiveX, using WinZIP and other client dependent software for ZIP, written in JS.

but no pure algorithm implementation, is it really difficult or non-functional?

i would use it for displaying KMZ files in a HTML page with the GMap object (google maps). The KMZ file is just a zipped KML file. I want to unzip a KMZ file and feed the KML to GMap.

flag

What do you need that for? – Gumbo May 23 at 19:25
How would it be useful when JavaScript really has no way to write to file, and its looping is rather sluggish. – epascarello May 23 at 20:24

3 Answers

vote up 2 vote down check

No need to unzip the KMZ file as Google Maps absolutely understands it. You can check it, simply search for the URL where your KMZ file is located in the Google Maps web interface and it will show its content on the map.

Here is a demo.

link|flag
vote up 0 vote down

DotNetZip has a COM interface, that can be accessed from Javascript. It has a stream-to-stream unzip capability, but I have never tried using that from Javascript.
Also I have never tried using the library in any way from within IE.

link|flag
vote up 0 vote down

Perhaps ZipReader from Mozilla can be used for what you are after.

https://developer.mozilla.org/en/nsIZipReader

link|flag
1  
Reading your question again actually made me wonder why you need to unzip KMZ to KML to be used with Google Maps when both file formats can be used directly. maps.google.com/support/bin/… – mr-euro May 23 at 21:46
yes, you're right... some guys have some issues, tough groups.google.com/group/Google-Maps-API/… – sopppas May 23 at 22:42
but, the nslZipReader would only run on Mozilla's browser right? – sopppas May 23 at 22:46
Yes ZipReader is only for Mozilla (Gecko browsers). But you could use ActiveX for IE and Zip Reader for the rest. Anyhow, regarding the eventual issues with KMZ try this alternative JS snippet. It should allow all elements of the KMZ file to be properly displayed: dcs.shef.ac.uk/~mark/blog/… – mr-euro May 23 at 23:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.