问题标签 [jvectormap]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
11754 浏览

jquery - 在 jvectormap 中设置单个区域的样式

所以,

我有一个自定义的 jVectorMap,我已经成功地使用 jVectorMap API 中的代码更改了区域的颜色:

但我试图单独控制地图每个区域的填充/悬停属性。有没有人这样做或知道如何实现它?我查看了 jVectorMap API,但无济于事。

马卡

0 投票
4 回答
4400 浏览

jvectormap - jvectormap:在标记之间画线?

我正在尝试验证是否可以使用 jvectormap 在地图上的标记之间绘制线条。

这是我想要实现的目标:http: //i.imgur.com/p1Zypv3.gif

有人可以给我一个提示,如果这是可行的,如果可以的话怎么办?

欣赏任何输入。

0 投票
1 回答
571 浏览

html - CA 的 jvector 地图想要简单地将省份链接到每个 html 页面

我正在使用以下 CA 地图:

资产/jquery-jvectormap-ca-lcc-en.js

我没有对任何文件进行任何修改。

每当有人点击其中任何一个时,我想要的只是将所有省份链接到他们的 html 页面。

这是我正在使用的现场演示页面:http: //mindsharehost.com/maps/tests/reverse-projection.html

0 投票
1 回答
5806 浏览

javascript - Jvectormap 突出显示多个国家

我目前正在使用JvectorMap并尝试在将鼠标悬停在文本上时突出显示多个国家,我已经达到了一个点,如果我将鼠标悬停在非洲这个词上,它将突出显示整个地图,我将如何过滤它以仅突出显示非洲我悬停在非洲的内容名称上。

目前我正在使用 a 创建一个大陆列表,jQuery.each并且我正在返回continentCodes,其中包含所有国家代码(ZA,US)并分配了颜色......我尝试执行以下操作:

但后来我重复了每个声明,我无法获得动态大陆。

这是一个JSFIDDLE

所以继承人的JS:

和 HTML:

0 投票
1 回答
3868 浏览

jquery - jVectorMap 创建地图后添加更多标记

我有一个完整的我们 jvectormap。我想在您放大某个状态时显示标记,太好了,我已经完成了...

我用这个

将我的地图变成一个对象,然后使用以下内容在地图上放置标记...

我的数组设置为...(示例)...

现在我的问题是说我仍然想使用 AddMarkers 函数,但我想添加具有不同颜色的标记来代表不同的事物,我是否必须切换到数据序列而不是上面的数组?当使用地图作为对象添加数据时,我不清楚文档,我了解创建地图对象时它是如何工作的,但不像我在上面使用它的方式......任何帮助将不胜感激。

0 投票
1 回答
450 浏览

javascript - 将 Jvectormap jQuery 文件导入 MySql 的最佳实践

我正在尝试将 SVG 数据放入 MySQL 数据库中,而无需复制和粘贴超过 200 行。有没有办法将以下内容导入 MySQL 数据库:

非常感谢任何帮助。

0 投票
1 回答
1359 浏览

javascript - Randomly colored US map using JVector

I have issues with coding US Map that would allow randomly assing colors to the US states map using JVector API. Here is the code:

Here is the link to my scripts folder where I keep the .js files. What is wrong with the function()?

0 投票
0 回答
76 浏览

javascript - Javascript 对象中的 HTML 显示为字符串

这对我来说很难搜索。我有一个对象,我用它填充 jvectormap 点:

但是当我将对象传递给 jvectormap 时,标签会显示<br>在文本中并且不给我换行符。

无论如何<br>在对象中将其标记为 HTML,以便 jvectormap 将其视为标签中的中断而不是直接文本?

0 投票
1 回答
4407 浏览

jquery - Jvectormap - Set hover color for each region?

I'd like to set individual region and hover colors for the JVectorMap plugin, and leave regions without data the default white.

So far, I've stripped out the scale data and replaced it with color codes (as shown in the code below). This is awesome, but I don't know how to also add in hover data.

If possible, I'd also like to add in data for document.body.style.cursor, so that I can turn off individual regions (where, for instance, the entity is blocked from doing trade), so that it doesn't appear to be an active link.

You'll also note I've got code to open a panel in there. It's for displaying a full popup div with individualized content for each region I have data for. It's inherited code, so to be honest I'm not sure how it works.

If I've forgotten anything, please let me know.

Currently this code pulls the color data from the sample_data.js file, which is formatted like:

I have gotten pretty far for a novice thanks to the community here, but I've been asked to go farther with jvectormap than I ever have before. And sadly, I'm only dangerous with this programming code, so I'm reaching out to the experts.

0 投票
2 回答
5041 浏览

javascript - 如何为 JVector Map 设置背景颜色?

我有以下代码来初始化 JVector 映射:

上面的行:backgroundColor: #FFFFFF不执行。我阅读了 API 文档,它似乎有正确的语法。除了该行之外,该代码完美无缺。如何设置背景?还有其他设置背景颜色的方法吗?