- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
下钻 map 示例具有引用三个相关 javascript 文件的 index.html
文件。
现在各种引用文献指向一个array of areas的定义允许url and target to be specified .
但是哪个 javascript 文件将承担这种负载并不明显。
在我看来,index.js 文件的相关部分是:
// Countries
var countriesSeries = chart.series.push(new am4maps.MapPolygonSeries());
var countries = countriesSeries.mapPolygons;
countriesSeries.visible = false; // start off as hidden
countriesSeries.exclude = ["AQ"];
countriesSeries.geodata = am4geodata_worldLow;
countriesSeries.useGeodata = true;
// Hide each country so we can fade them in
countriesSeries.events.once("inited", function() {
hideCountries();
});
worldLow
文件似乎是一个更合适的位置,因为它定义了国家多边形
am4internal_webpackJsonp(["fcaa"],{ATzU:function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});window.am4geodata_worldLow={type:"FeatureCollection",
features:[{type:"Feature",geometry:{type:"Polygon",coordinates:[[[179.2223,-8.554],[179.2023,-8.4653],[179.2312,-8.5048],[179.2223,-8.554]]]},properties:{name:"Tuvalu",id:"TV"},id:"TV"},
{type:"Feature",geometry:{type:"Polygon",coordinates:[[[3.4624,-54.4471],[3.3461,-54.4511],[3.3669,-54.3997],[3.4814,-54.4001],[3.4624,-54.4471]]]},properties:{name:"Bouvet Island",id:"BV"},id:"BV"},
{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-5.3345,36.1623],[-5.3382,36.1122],[-5.3562,36.1264],[-5.3551,36.1455],[-5.3345,36.1623]]]},[...]
当我试图在这个数组中添加一个 url
属性时,它失败了。
执行此操作的正确方法是什么?
最佳答案
您引用的链接都是针对 amCharts v3 的,而您的代码是针对 v4 的。
这是 v4 下钻 map 在线演示:https://www.amcharts.com/demos/drill-down-map/ (我将使用它作为下面代码的基础)。
目前尚不清楚您的问题是什么,我假设您正在尝试使国家/地区可点击链接。 url
property of a MapPolygon
是进行这些更改的正确位置。
您可以直接分配或通过 binding property fields to data 分配.
要直接分配它,您可以等到系列加载完毕,例如通过它的 "inited"
event ,然后使用该系列的 getPolygonById()
方法通过其 ISO2 ID 获取国家/地区。所以,例如如果你想让加拿大点击进入谷歌:
countriesSeries.events.on("inited", function() {
var canada = countriesSeries.getPolygonById('CA');
canada.url = "https://www.google.com/search/?q=canada";
});
要将 MapPolygon
的 url
属性绑定(bind)到您提供给系列的数据中可能出现的字段,请设置系列的 template的 propertyFields.url
到数据对象中匹配字段的名称(假设我们在这种情况下也将使用 "url"
),例如:
countrySeries.mapPolygons.template.propertyFields.url = "url";
现在只是pass data to the series ,例如如果您希望美国点击进入 google.com,请传递一个包含单个对象的数组,该对象的 id
为 "US"
和 "url"
是 "http://google.com"
:
countriesSeries.data = [
{
id: "US",
url: "https://www.google.com"
}
];
这是一个演示:
https://codepen.io/team/amcharts/pen/6b8bffc714a966304a8f29d6939ee064
关于javascript - amcharts 向下钻取 map 国家可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55501569/
运行 apache-drill-1.14.0 在 mysql 上测试这个查询并在 0.02 秒内得到结果 在 drill cli 中运行查询失败并出现 AssertionError 查询: produ
我是 Apache Drill 的新手。 场景是这样的: 我有一个 S3 存储桶,我在其中放置了名为 test.csv 的 csv 文件。 我已经按照官方网站的说明安装了 Apache Drill。
我正忙于学习第 2 版《编程:使用 C++ 的原理与实践》(Stroustrup),并且在读取值时遇到了有无空格的问题,然后再次显示它们。 能否请您指出正确的方向,以便我找出结果不同的原因? 代码编译
我是一名优秀的程序员,十分优秀!