helgasoft commented on issue #15541:
URL: https://github.com/apache/echarts/issues/15541#issuecomment-1144329796
This has not been fixed yet in GL. Workaround is to add an invisible 3D
reference point.
In the _series_ property add:
```
,{
type: 'scatter3D',
coordinateSystem: 'geo3D',
symbolSize: 0, // add invisible reference point
data:[[0,0,0]] // with altitude = 0
}
,{
type: 'scatter3D',
coordinateSystem: 'geo3D',
symbolSize: 20,
itemStyle:{ color:'#fa0202' },
data:[[-90,40,1], [-70,- 40,2]] // add altitude>0 on all points
}
```
see also [related problem](https://github.com/ecomfe/echarts-gl/issues/432).

--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]