WorldWideTelescope / wwt-web-client

The WorldWide Telescope web client lets you explore the universe in your browser.
https://worldwidetelescope.org/webclient/
MIT License
105 stars 35 forks source link

Issue with plot types #191

Open astrofrog opened 5 years ago

astrofrog commented 5 years ago

According to the SDK, the following plot types are available:

  var PlotTypes = {
    gaussian: 0,
    point: 1,
    circle: 2,
    square: 3,
    pushPin: 4,
    custom: 5
  };

However, this is what they look like

set_plotType(0)

screenshot 2019-01-03 at 12 10 05

set_plotType(1)

screenshot 2019-01-03 at 12 10 11

set_plotType(2)

screenshot 2019-01-03 at 12 10 17

set_plotType(3)

screenshot 2019-01-03 at 12 10 22

set_plotType(4)

screenshot 2019-01-03 at 12 10 31

There are several issues:

astrojonathan commented 5 years ago

Very interesting. Are you sure there in not two objects on top of each other?>

astrofrog commented 5 years ago

@astrojonathan - no, I checked with a fresh session plotting only a single layer and I still get the same. This is in Chrome.

astrofrog commented 5 years ago

@astrojonathan - the issue with the gaussian on top of other points is fixed in https://github.com/WorldWideTelescope/wwt-web-client/pull/204. The other issues still hold though.