diff --git a/src/layer/vector/Circle.js b/src/layer/vector/Circle.js index 8c7a3923..b4848dfb 100644 --- a/src/layer/vector/Circle.js +++ b/src/layer/vector/Circle.js @@ -73,7 +73,9 @@ L.Circle = L.Path.extend({ }, _checkIfEmpty: function () { - if(!this._map) return false; + if (!this._map) { + return false; + } var vp = this._map._pathViewport, r = this._radius, p = this._point;