Skip to content
Snippets Groups Projects
Commit 052bcb16 authored by Vink, S.A. (Sjoerd)'s avatar Vink, S.A. (Sjoerd)
Browse files

feat(map_nodelink): fixed merge issue

parent 03864a99
No related branches found
No related tags found
1 merge request!151feat(map_nodelink)
Pipeline #137595 passed
This commit is part of merge request !151. Comments created here will be created in the context of that merge request.
import React from 'react';
import { SettingsContainer } from '../../components/config';
import { layerSettings, layerTypes } from './components/layers';
import { Input } from '../../..';
import { EntityPill, Input } from '../../..';
import { VisualizationSettingsPropTypes } from '../../common';
import { MapProps } from './mapvis';
import { nodeColorHex } from '../nodelinkvis/components/utils';
......
......@@ -20,9 +20,6 @@ export class NodeLinkLayer extends CompositeLayer<LayerProps> {
const brushingExtension = new BrushingExtension();
const collisionFilter = new CollisionFilterExtension();
const brushingExtension = new BrushingExtension();
const collisionFilter = new CollisionFilterExtension();
graph.metaData.nodes.labels.map((label: string) => {
layers.push(
new ScatterplotLayer({
......
......@@ -15,7 +15,6 @@ export type MapProps = {
lat: string;
lon: string;
enableBrushing: boolean;
enableBrushing: boolean;
};
const settings: MapProps = {
......@@ -24,7 +23,6 @@ const settings: MapProps = {
lat: 'gp_latitude',
lon: 'gp_longitude',
enableBrushing: false,
enableBrushing: false,
};
const INITIAL_VIEW_STATE = {
......@@ -107,7 +105,6 @@ export const MapVis = ({ data, settings, updateSettings, graphMetadata, handleSe
name: 'New layer',
type: layerType,
config: settings,
config: settings,
visible: true,
});
}, [settings.layer]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment