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
I need to display 2 mobile earth terminals, and a moving satellite, and the paths between each terminals and the satellite, having the positions(lat, lng and alt(for satellite). I am trying to use pathsData, but I am unable to set different colors for the trajectories of each terminal/satellite and the paths between each terminal and the satellite. Is there any way to do this? Thank you!
I need to display 2 mobile earth terminals, and a moving satellite, and the paths between each terminals and the satellite, having the positions(lat, lng and alt(for satellite). I am trying to use pathsData, but I am unable to set different colors for the trajectories of each terminal/satellite and the paths between each terminal and the satellite. Is there any way to do this? Thank you!
Globe.pathsData([
terminal1Coords,
terminal2Coords,
satelliteCoords,
...terminal1ToSatellitePaths,
...terminal2ToSatellitePaths,
])
.pathColor(() => "red")
.pathResolution(4) // Solid lines
.pathDashLength(1)
.pathDashGap(0)
.pathTransitionDuration(satelliteCoords.length * 100);
The text was updated successfully, but these errors were encountered: