1

米国の郡のコロプレス マップを、マップ サービスのレイヤーとして (たとえば、リーフレットを使用して) またはプレーンな SVG/VML 図として設定しようとしています。

問題は、Chrome または Firefox がどちらのオプションも完全にレンダリングするのに対して、IE8 はそれほど多くのポリゴンを処理せず、読み込み時間が許容できないことです。

静的 PNG サーバー側の生成に戻る前に、IE8 でそのような視覚化を生成できる軽量コンポーネント (Flash ベースではない) を知っていますか? ありがとうございました!

4

1 に答える 1

1

In increasing order of complexity :

Creating a choropleth map can be done very easily with Tableau. The visualization can be exported and made interactive. Tableau is not a free software, but you will have a trial period to try it.

We also had students implementing their choropleth map using D3 with the map imported using JSON. As far as I know, this didn't pose problems with IE, although I didn't specifically test them on IE.

Finally, the winning team in one of our course contest created a map (although not a choropleth, they still visualized data on it) using Processing. This usually involves more coding (Java-like), but doable and you can test their visualization on an IE8 browser (at this link - the visualization is very slow to load but this is more due to their extraction of tweeter feeds rather than the map itself).

In general, you can see our students' visualization at this URL, several of them having map visualizations - and you can browse technologies used for choropleth maps at the visualizing.org website.

于 2012-12-10T21:54:03.583 に答える