We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63ab57d commit 0003a64Copy full SHA for 0003a64
src/webgl/pointFeature.js
@@ -220,7 +220,9 @@ var webgl_pointFeature = function (arg) {
220
fillVal = fillFunc(item, i) ? 1.0 : 0.0;
221
fillOpacityVal = fillOpacityFunc(item, i);
222
fillColorVal = fillColorFunc(item, i);
223
- if (m_primitiveShapeAuto && ((fillVal && fillOpacityVal) || (strokeVal && strokeOpacityVal)) && radiusVal + (strokeVal && strokeOpacityVal ? strokeWidthVal : 0) > maxr) {
+ if (m_primitiveShapeAuto &&
224
+ ((fillVal && fillOpacityVal) || (strokeVal && strokeOpacityVal)) &&
225
+ radiusVal + (strokeVal && strokeOpacityVal ? strokeWidthVal : 0) > maxr) {
226
maxr = radiusVal + (strokeVal && strokeOpacityVal ? strokeWidthVal : 0);
227
}
228
for (j = 0; j < vpf; j += 1, ivpf += 1, ivpf3 += 3) {
0 commit comments