0

How can i show "US county" map in a web page. I see HighCharts shows the US states in the following link http://www.highcharts.com/studies/us-map.htm

I want to show US county. Is there any way to show US county. What data i should provide to highchart to render US county map.

Your help will be appreciated greatly

Thanks

4

1 回答 1

0

简单的 iframe:

<iframe src="http://www.highcharts.com/studies/us-map.htm"></iframe>

然后简单地检查元素的高度、宽度、填充等,并给你的 iframe 大约。相同的大小。

iframe {
  width: 820px;
  height: 550px;
}

或者,您可以复制源代码,但前提是您获得网站所有者的明确许可。

于 2013-04-29T12:51:54.363 回答