highmap不显示

时间:2018-03-30 10:29:05

标签: javascript jquery html highmaps



$(document).ready(function () {

      Highcharts.mapChart('container1', {
    chart: {
        map: 'map',
        spacingBottom: 20
    },

    title: {
        text: 'areas'
    },

    legend: {
        enabled: true
    },

    plotOptions: {
        map: {
            allAreas: false,
            joinBy: ['area', 'code'],
            dataLabels: {
                enabled: true,
                color: '#FFFFFF',
                style: {
                    fontWeight: 'bold'
                },
                // Only show dataLabels for areas with high label rank
                format: null,
                formatter: function () {
                    if (this.point.properties && this.point.properties.labelrank.toString() < 5) {
                        return this.point.properties['area'];
                    }
                }
            },
            tooltip: {
                headerFormat: '',
                pointFormat: '{point.area}: <b>{series.area}</b>'
            }
        }
    },

    series: [{
        name: 'Area1',
        data: ['1','2'].map(function (code) {
            return { code: code };
        })
    }, {
        name: 'Area2',
        data: ['3','4'].map(function (code) {
                return { code: code };
            })
    }, {
        name: 'nodata',
        data:  [{
            code: 'RU'
        }]
    }]
});

    
});
&#13;
&#13;
&#13;

我必须在我的网页上显示高图。我跟着这个例子 https://www.highcharts.com/maps/demo/category-map

我没有收到任何错误,但我的地图没有加载或显示。实际上shapefile没有显示。以上是我的代码

1 个答案:

答案 0 :(得分:1)

加载public function getGreeting(){ $user = Auth::guard('api')->user(); if($user !== null) { return response()->json(["message" => "Hello {$user->name}"], 200); } return response()->json(["message" => "Hello Guest"], 200); } 后,您应该使用jQuery加载数据:

DOM

示例:

$(document).ready(function () { ... });
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/maps/modules/map.js"></script>
<script src="https://code.highcharts.com/maps/modules/exporting.js"></script>
<!-- Import the world -->
<script src="https://code.highcharts.com/mapdata/custom/world.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<link href="https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">

<script type="text/javascript">
$(document).ready(function () {

     Highcharts.mapChart('container1', {
chart: {
    map: 'custom/world', //add the world as a map
    spacingBottom: 20
},

title: {
    text: 'areas'
},

legend: {
    enabled: true
},

plotOptions: {
    map: {
        allAreas: false,
        joinBy: ['iso-a2', 'code'], //join by iso-a2
        dataLabels: {
            enabled: true,
            color: '#FFFFFF',
            style: {
                fontWeight: 'bold'
            },
            // Only show dataLabels for areas with high label rank
            format: null,
            formatter: function () {
                if (this.point.properties && this.point.properties.labelrank.toString() < 5) {
                    return this.point.properties['iso-a2']; //join by iso-a2
                }
            }
        },
        tooltip: {
            headerFormat: '',
            pointFormat: '{point.name}: <b>{series.name}</b>'
        }
    }
},

series: [{
    name: 'Area1',
    // use country code as CODE
    data: ['FR','BE'].map(function (code) {
        return { code: code };
    })
}, {
    name: 'Area2',
    data: ['ES','PT'].map(function (code) {
            return { code: code };
        })
}, {
    name: 'nodata',
    data:  [{
        code: 'RU'
    }]
}]
});
});
</script>

编辑:这是一个工作小提琴,因为SO中的那个似乎有一些错误:https://jsfiddle.net/zxmfvp0u/10/