Visualize altitude along PathLayer #868
Answered
by
devemux86
demiantres
asked this question in
Q&A
-
I want to visualize altitude data along a PathLayer. As far as I can see all data structures have to be updated to use 3D points instead of 2D points (and of course the shader has to be updated) so that the z-coordinate can hold the elevation. Is this correct, or is there already some implementation offering such functionality? |
Beta Was this translation helpful? Give feedback.
Answered by
devemux86
Aug 9, 2021
Replies: 1 comment 4 replies
-
Map library provides the API to display line overlays on the map (which is 2D). To display different colors per elevation, you can use custom data structures and paint differently the segments of the line. |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
devemux86
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Map library provides the API to display line overlays on the map (which is 2D).
To display different colors per elevation, you can use custom data structures and paint differently the segments of the line.