We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 24d0bb1 + a4f0c5c commit fb0895cCopy full SHA for fb0895c
src/map.js
@@ -1704,6 +1704,7 @@ var map = function (arg) {
1704
* with other settings applied.
1705
*/
1706
function fix_zoom(zoom, ignoreDiscreteZoom) {
1707
+ zoom = Math.round(zoom * 1e6) / 1e6;
1708
zoom = Math.max(
1709
Math.min(
1710
m_validZoomRange.max,
src/pointFeature.js
@@ -143,7 +143,6 @@ var pointFeature = function (arg) {
143
// prevent recomputing the clustering and set the new data array
144
m_ignoreData = true;
145
m_this.data(data);
146
- m_this.draw();
147
};
148
149
////////////////////////////////////////////////////////////////////////////
0 commit comments