From 6a7472617f8b99800d714599a9748554ffd48154 Mon Sep 17 00:00:00 2001 From: changqing Date: Sat, 19 Dec 2020 21:42:58 +0800 Subject: [PATCH] Remove the console.log from the custom circle render example --- examples/custom-circle-render.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/custom-circle-render.js b/examples/custom-circle-render.js index 06b1802cfe..974c8ffdda 100644 --- a/examples/custom-circle-render.js +++ b/examples/custom-circle-render.js @@ -12,8 +12,6 @@ const circleFeature = new Feature({ circleFeature.setStyle( new Style({ renderer(coordinates, state) { - // eslint-disable-next-line no-console - console.log('This circle is rendered by the code below.', Date.now()); const [[x, y], [x1, y1]] = coordinates; const ctx = state.context; const dx = x1 - x;