I am trying to pull some KMZ files over the net and overlay them on Google Maps. I have looked at Apple's kmlParser example, which is very close to what I want to do, however in its current form it can only parse KML files. Most of the RSS feeds and google data on the net however seems to be in KMZ format (which I believe is a zipped version of KML files). Is it possible to unzip the KMZ files programmatically in Xcode?
- (void)viewDidLoad
{ [super viewDidLoad];
// Locate the path to the route.kml file in the application's bundle
//
//NSURL *path = @"http://earthquake.usgs.gov/earthquakes/catalogs/eqs7day-age.kmz";
//NSURL *url = [[NSURL alloc] initWithString:@"http://earthquake.usgs.gov/earthquakes/catalogs/eqs7day-age.kmz"];
//kml = [[KMLParser parseKMLAtURL:url] retain]; // and parse it with the KMLParser.
NSString *path = [[NSBundle mainBundle] pathForResource:@"doc" ofType:@"kml"];
kml = [[KMLParser parseKMLAtPath:path] retain]; // and parse it with the KMLParser.
// Add all of the MKOverlay objects parsed from the KML file to the map.
NSArray *overlays = [kml overlays];
[map addOverlays:overlays];
In the above code snipped, I have also tried using the NSURL method (commented out lines), but it doesn't work. I have to manually download the KMZ file, unzip it and then feed it to the KML parser and ideally I would like to do that within the program itself.
I will appreciate any help or guidance on how to solve this problem.
Soofi