-
Notifications
You must be signed in to change notification settings - Fork 83
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
Version 1.4.4 || Uncaught ReferenceError: jsVectorMap is not defined #69
Comments
Hi @Mgrmjp There's was a typo in the documentation website and readme file about It's fixed now, you can import like so: import jsVectorMap from 'jsvectormap'
import 'jsvectormap/dist/maps/world.js'
const map = new jsVectorMap({
selector: '#map',
map: 'world',
}) |
Still doing the same even after changing the import. 😢 |
Thank you for letting me know about this issue! It looks like it's failing, starting from v1.4.0 when using ESM or CJS modules, but it works just fine on HTML files. As a temporary workaround you can do so: import jsVectorMap from "jsvectormap"
window.jsVectorMap = jsVectorMap
import "jsvectormap/dist/maps/world-merc"
const map = new jsVectorMap({
selector: "#map",
map: "world_merc"
}) |
That didn't seem to help either. 😂 Maybe it's something on my end. 🤷🏻♂️ |
Try to change the jsvectormap version to 1.4.4, the issue is still present. |
@rushenn Gonna publish a new version today which fixes the issue. |
Please update to v1.4.5 https://iqp6rj.csb.app/ |
Barebones project and trying to use the package. Getting this in console:
Downgrading to 1.3.3 worked, but what might be the problem?
Importing like so:
Installed via npm. Node version 14.19.0.
The text was updated successfully, but these errors were encountered: