28 lines
924 B
HTML
28 lines
924 B
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Highmaps Only Test</title>
|
|
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
|
|
<script src="https://code.highcharts.com/maps/highmaps.js"></script>
|
|
<script src="https://code.highcharts.com/mapdata/custom/world.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="mapContainer" style="height: 500px; min-width: 310px; max-width: 800px; margin: 0 auto;"></div>
|
|
<script>
|
|
$(function() {
|
|
Highcharts.mapChart('mapContainer', {
|
|
chart: { map: 'custom/world' },
|
|
title: { text: 'World Map Example' },
|
|
series: [{
|
|
data: [['kr', 45], ['us', 28], ['de', 15]],
|
|
name: 'Revenue',
|
|
states: { hover: { color: '#BADA55' } },
|
|
dataLabels: { enabled: true, format: '{point.name}' }
|
|
}]
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|