Nora Söderlund

Results 11 comments of Nora Söderlund

Not a bug. This is how CanvasRenderingContext2D is logically meant to work. What you should've done is used paths, e.g.: ```js const canvas = document.getElementById("canvas"); const context = canvas.getContext("2d"); context.beginPath();...

Can someone post a MRE because nothing here proves that it's an underlying issue to the messager here. getImageData is very slow by default, and calling it multiple times in...

Duplicate of #185.

Where are you setting the source? And where is your canvas variable being declared?

This is not a bug, the syntax is invalid, as of the MDN specification: https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/isPointInPath ```js isPointInPath(x, y) isPointInPath(x, y, fillRule) isPointInPath(path, x, y) isPointInPath(path, x, y, fillRule) ``` `ctx.isPointInPath(210,...

I figured I could help look into this, but I can't reproduce the issue. Can you provide a minimal reproducible example of this happening? @lafllamme

@lafllamme please [use this issue](https://github.com/googlemaps/js-markerclusterer/issues/532) or refer to one of the other technical support forums found at https://developers.google.com/maps/support This issue is for the original “addMarker does not update cluster count”.

@AndreiPrigorkin can you provide your API query? I'm getting good results with this: https://maps.googleapis.com/maps/api/place/textsearch/json?key=API_KEY&query=Dammam Perhaps your location parameter is bad?

Until they've fixed it in the repository, you can revert all the breaking changes made by the dependency bot in your local environment. The bot upgraded quite a lot of...

@wagerfield can this be approved? See use case: https://stackoverflow.com/questions/74942946/how-to-disable-parallax-js-on-element-click/74943055#74943055 Currently, one must either override the inline styling through JS or use `!important` which is [bad practice but forced in these...