-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
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
Unable to parse kml with gx:LatLonQuad node #650
Comments
Thanks for reporting. This was not something we were planning on adding, however, contributions are certainly welcome to get this working. |
Would you mind sharing an example KML file / snippet in case someone wants to take this on? |
Here's a sample. The
|
This issue has been automatically marked as stale because it has not had recent activity. Please comment here if it is still valid so that we can reprioritize. Thank you! |
Hi, do we know if there are still plans to support |
This issue has been automatically marked as stale because it has not had recent activity. Please comment here if it is still valid so that we can reprioritize. Thank you! |
Closing this. Please reopen if you believe it should be addressed. Thank you for your contribution. |
Old ticket, but it has recently become relevant to one of our workflows (offline cartography), so I have raised a PR to fix this... |
Hello. I have a kml file that uses the
xmlns:gx="http://www.google.com/kml/ext/2.2"
namespace and uses thegx:LatLonQuad
node with thecoordinates
defining the lat/lon coordinates of the box, instead ofLatLonBox
When loading this kml file to
KmlLayer
, it throws an exception because I believe it doesn't read thegx:LatLonQuad
node, but instead is looking forLatLonBox
to parse thenorth
,south
,east
, andwest
nodes. The following exception trace is as follows:This kml file works when loading to Google Earth by the way.
Is there plans to support
gx:LatLonQuad
in later releases?The text was updated successfully, but these errors were encountered: