img-mapper / react-img-mapper

React Component to highlight interactive zones in images
https://img-mapper.github.io/react-docs
MIT License
122 stars 39 forks source link

Map freezing/stuck random, coords Infinity #54

Closed anibalardid closed 1 year ago

anibalardid commented 2 years ago

Describe the bug It doesnt happend on Firefox. The problem is when you move the mouse cursor over the image map, sometimes it stills freeze, stuck. Checking the code, it makes a math division, return coords.map(function (coord) { return coord / (imgRef.naturalWidth / parentWidth); }); and debugging it, sometimes 'imgRef.naturalWidth ' is zero (0)

Error Stack npm package version v1.3.0

You could see "infinity" coords on each element of map: <area shape="poly" coords="Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity,Infinity" href="#" alt="map">

Expected behavior Don't do that :)

Screenshots image

Desktop (please complete the following information):

anibalardid commented 2 years ago

We have a fix

File: dist/ImageMapper.js

Change: if (responsive && parentWidth) {

by

if (responsive && parentWidth && imgRef.naturalWidth) {

NishargShah commented 2 years ago

Did you check with version V1.3.0?

anibalardid commented 2 years ago

Did you check with version V1.3.0?

yes, i used that version v1.3.0 and this version is not on this repository as a tag or release, only in npm

NishargShah commented 2 years ago

Yes, it is not listed but you can directly download it from npm.

anibalardid commented 2 years ago

Yeah, and it has a fail, that i fixed as commented in this issue

ventsislavnikolov commented 2 years ago

Hi guys, can the fix be uploaded or PR merged? I have the same problem, sometimes/random the map doesn't work and show cords as infinity.

Thanks!

DanielePancottini commented 1 year ago

Same problem :(

NishargShah commented 1 year ago

Guys, I apologize for the lack of updates lately, but I will make sure to get them fixed by this weekend.

DanielePancottini commented 1 year ago

anyone fixed this problem?

NishargShah commented 1 year ago

Duplicate of https://github.com/img-mapper/react-img-mapper/issues/42