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,
I have a KML file with the following line string coordinates;
<coordinates>5.032150000,52.03049000,0.0000000 5.030590000,52.02989000,1.0000000</coordinates>
Is there a reason the altitude data is completely ignored?
For example in the KML adapter;
protected function parsePoint($xml) { $coordinates = $this->_extractCoordinates($xml); return new Point($coordinates[0][0],$coordinates[0][1]); }
The 3rd constructor argument of the Point class is never set :( however, the component data is available in $coordinates.
Point
$coordinates
The text was updated successfully, but these errors were encountered:
3D support is not complete see #53 and #54
Sorry, something went wrong.
No branches or pull requests
Hi,
I have a KML file with the following line string coordinates;
Is there a reason the altitude data is completely ignored?
For example in the KML adapter;
The 3rd constructor argument of the
Point
class is never set :( however, the component data is available in$coordinates
.The text was updated successfully, but these errors were encountered: