From 6a2a75d25df974b2cc00227c172f872cd0372285 Mon Sep 17 00:00:00 2001 From: Michele Ceriotti Date: Thu, 17 Oct 2024 08:34:49 +0200 Subject: [PATCH] Remove problematic "x" symbol from those available in 3D --- src/map/options.ts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/map/options.ts b/src/map/options.ts index 423c02939..fd10c43d0 100644 --- a/src/map/options.ts +++ b/src/map/options.ts @@ -23,14 +23,7 @@ import HTML_OPTIONS from './options.html.in'; // in 3D mode, only strings are supported for 'marker.symbol', and only very few // of them. See https://github.com/plotly/plotly.js/issues/4205 as the plotly // issue tracking more symbols in 3D mode. -const POSSIBLE_SYMBOLS_IN_3D = [ - 'circle', - 'square', - 'diamond', - 'cross', - 'circle-open', - 'square-open', -]; +const POSSIBLE_SYMBOLS_IN_3D = ['circle', 'square', 'diamond', 'cross']; export function get3DSymbol(i: number): string { return POSSIBLE_SYMBOLS_IN_3D[i % POSSIBLE_SYMBOLS_IN_3D.length];