Leaflet.glify icon indicating copy to clipboard operation
Leaflet.glify copied to clipboard

Points: Dark color when zoom out

Open vutle opened this issue 3 years ago • 3 comments

When zooming out, only the end point retains the color. Other point loose its emissive color and becomes darken.

image

zoomed out: image

image

Aslo, opacity seems to be removed at higher zoom too.

The following code were used to draw points:

 glifyPoints = L.glify.points({
          map: map,
          color:  clrs,
          data:   data, 
            weight: 0,
            opacity: 0.5,
            size: 10,
          });

vutle avatar Nov 28 '21 00:11 vutle

The problem is caused by the border.

iisri-vu avatar Feb 21 '22 23:02 iisri-vu

is there any option to remove border?

ilmars avatar May 02 '24 14:05 ilmars

you can use this option: fragmentShaderSource : L.glify.shader.fragment.simpleCircle

xuantruonglk02 avatar Aug 16 '24 04:08 xuantruonglk02