-
Notifications
You must be signed in to change notification settings - Fork 287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WebSocket connection to 'ws://localhost:8081/ws' failed #1323
Comments
Thanks for opening your first issue here! This space is protected by our Code of Conduct - and we're here to help. |
I'm having this same issue, and I'm wondering if a solution has been found? |
Yeah! I'm having this same issue too. |
Same issue |
same issue too |
It seems like the problem has been fixed with the release 0.21.10 which somehow isn't available on npm. The website you linked (https://publiclab.github.io/Leaflet.DistortableImage/examples/index.html) doesn't show the error anymore. |
Interesting, thanks for the update! Any idea who is responsible for publishing 0.21.10 on npm? I bet it's where 99% of people pull this library from and it's already been 3 months since the release. |
Looks like it is not working with websocket builds, can someone have a work around for it. |
Im still having the same issue with 0.21.10 working with NextJS v13. |
Did anyone figure out a solution to fix this? |
Yeah still having this issue. |
have anyone found a solution to this? |
looks like the only way to fix that is to clone repository locally and make the production build with "npm run build" (I had to disable tests also in gruntfile, they didn't start). When files can be copied into your project from 'dist' folder instead of using NPM package. But keep in mind the latest version of the code in the repository has at least two bugs:
If you don't want to do it yourself, just take from 'dist' folder in this fork https://github.com/Karelics/Leaflet.DistortableImage P.S. maintainers (@jywarren ?) some unexplainable hell is happening with the repository, development build released into NPM, unstable updates merged into main branch, so new release can't be done without adjestments, ... In general your library looks so cool, but what happened in the last year, could you stabilize the situation, thank you! |
Same issue. Also, for the love of god, please help me with example. I can't hide/show the image. If I use distortableCollection toggling the layer doesn't hide the image, only toolbar. If I use layerGroup it hides the image, but doesn't show it back. Please help! It's a single file you can run it locally. https://joric.github.io/maps/examples/remap/ let imgGroup = L.distortableCollection().addTo(map);
imgGroup.addLayer(img);
L.control.layers({}, { 'Images': imgGroup }).addTo(map); It doesn't work! Neither with distortableCollection nor with layerGroup! Upd. the Websocket issue is GONE in 0.21.7, you can use this CDN: <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.distortableimage.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vendor.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.distortableimage.min.js"></script> As for the dissapearing image, I had to re-add it in overlays using a regular layerGroup. Don't know how to fix it properly. As I said, using distortableCollection as a group doesn't help it all. map.on('overlayadd', function(e) {
if (e.name == 'Images') {
loadImages();
}
}); |
I got the same issue with the latest release. This package worked for me: https://www.npmjs.com/package/leaflet-distortableimage-updated Be sure to include leaflet-toolbar |
Describe the bug:
Whenever a page that has this package included is opened, the browser repeatedly attempts to connect to the WebPack dev server at
localhost:8081
. As I'm not using WebPack, this request constantly fails and it also happens in production. When you open your browser's dev tools, you can observe this behavior in the console. This also happens on the demo site.It looks like the package is distributed with a development build, but I haven't looked too far into it. I'm not that familiar with WebPack.
Reproduce the behavior:
Browser, version, and operating system:
Any help is much appreciated, thanks a lot in advance! :)
The text was updated successfully, but these errors were encountered: