From 4c86955ceb8fcba7516e010858030d8958abccd9 Mon Sep 17 00:00:00 2001 From: Mark Keller <7525285+keller-mark@users.noreply.github.com> Date: Mon, 25 Mar 2024 13:20:10 -0400 Subject: [PATCH 1/2] Update MNIST example coordination types --- examples/plots/src/mnist-example.tsx | 66 +++++++++++----------------- 1 file changed, 26 insertions(+), 40 deletions(-) diff --git a/examples/plots/src/mnist-example.tsx b/examples/plots/src/mnist-example.tsx index 53c0cea..ffa3334 100644 --- a/examples/plots/src/mnist-example.tsx +++ b/examples/plots/src/mnist-example.tsx @@ -21,71 +21,61 @@ const colors = [[78,121,167, 255],[242,142,44, 255],[225,87,89, 255],[118,183,17 const pluginCoordinationTypes = { zoomLevel: z.number().nullable(), zoomOffset: z.number().nullable(), - targetX: z.number().nullable(), - targetY: z.number().nullable(), + target: z.array(z.number()).length(2).nullable(), }; const initialSpec = defineSpec({ key: 1, coordinationSpace: { "zoomLevel": { - "shared": 3.282928374353915 + "shared": 3.3 }, "zoomOffset": { "overview": 0, "detail": 2 }, - "targetX": { - "umap": 0.5722378595673838, - "densmap": 0.19160931736478615 + "target": { + "umap": [0.57, -0.24], + "densmap": [0.19, -0.01], }, - "targetY": { - "umap": -0.24042483622122024, - "densmap": -0.01400468369125818 - } }, viewCoordination: { - umap: { + umapOverview: { coordinationScopes: { zoomLevel: "shared", zoomOffset: "overview", - targetX: "umap", - targetY: "umap", + target: "umap", }, }, - densmap: { + densmapOverview: { coordinationScopes: { zoomLevel: "shared", zoomOffset: "overview", - targetX: "densmap", - targetY: "densmap", + target: "densmap", }, }, umapDetail: { coordinationScopes: { zoomLevel: "shared", zoomOffset: "detail", - targetX: "umap", - targetY: "umap", + target: "umap", }, }, densmapDetail: { coordinationScopes: { zoomLevel: "shared", zoomOffset: "detail", - targetX: "densmap", - targetY: "densmap", + target: "densmap", }, }, }, }); function MnistLegend(props: any) { - return (
MNIST Digit
-