We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, According to https://developers.google.com/kml/documentation/kmlreference?hl=fr#innerboundaryis here is a quick fix for kml adapter
diff --git "a/src/Adapter/KML.php" "b/src/Adapter/KML.php" index 4b0f959..28b6e84 100644 --- "a/src/Adapter/KML.php" +++ "b/src/Adapter/KML.php" @@ -344,7 +344,7 @@ class KML implements GeoAdapter . '</' . $this->nss . 'outerBoundaryIs>'; foreach (array_slice($components, 1) as $comp) { $str .= '<' . $this->nss . 'innerBoundaryIs>' - . $this->linestringToKML($comp) + . $this->linestringToKML($comp, 'LinearRing') . '</' . $this->nss . 'innerBoundaryIs>'; } }
The text was updated successfully, but these errors were encountered:
https://github.com/funiq/geoPHP/issues/11
a40b805
fixed in my fork nono303@a40b805
Sorry, something went wrong.
No branches or pull requests
Hi,
According to https://developers.google.com/kml/documentation/kmlreference?hl=fr#innerboundaryis here is a quick fix for kml adapter
The text was updated successfully, but these errors were encountered: