我在geo json文件中有一个Map,我需要在highcharts中使用它。我如何使用我在highcharts中创建的geojsonMap,而不是使用highcharts中的给定Map。**
jckbn6z71#
您需要使用Highcharts.geojson方法来重新构建GeoJSON对象,以准备由series.mapData选项直接读取。
Highcharts.geojson
const states = Highcharts.geojson(geojson, 'map'), rivers = Highcharts.geojson(geojson, 'mapline'), cities = Highcharts.geojson(geojson, 'mappoint');
现场演示:https://jsfiddle.net/BlackLabel/gqebvL2t/**API参考:**https:api.highcharts.com/class-reference/Highcharts#.geojson
1条答案
按热度按时间jckbn6z71#
您需要使用
Highcharts.geojson
方法来重新构建GeoJSON对象,以准备由series.mapData选项直接读取。现场演示:https://jsfiddle.net/BlackLabel/gqebvL2t/
**API参考:**https:api.highcharts.com/class-reference/Highcharts#.geojson