You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 27, 2022. It is now read-only.
KmzFile* kmzFile = KmzFile::OpenFromString(someString); // some string checked to make sure is kmz
std::string kmlString;
kmzFile->ReadKml(&kmlString); // after execution, kmlString is always empty ("") and false returned.
Again, I have checked to make sure "someString" really is kmz data, and that there IS a doc.kml file inside the kmz. Why is the ReadKml function STILL returning false and putting an empty string as output?
KmzFile* kmzFile = KmzFile::OpenFromString(someString); // some string checked to make sure is kmz
std::string kmlString;
kmzFile->ReadKml(&kmlString); // after execution, kmlString is always empty ("") and false returned.
Again, I have checked to make sure "someString" really is kmz data, and that there IS a doc.kml file inside the kmz. Why is the ReadKml function STILL returning false and putting an empty string as output?