World with Palestine areas, low resolution - Highmaps

Highmaps demo

by Luke Marlow

HTML

<script src="https://code.highcharts.com/maps/highmaps.js"></script>
<script src="https://code.highcharts.com/maps/modules/exporting.js"></script>
<script src="https://code.highcharts.com/mapdata/custom/world-palestine-lowres.js"></script>

<div id="container"></div>

CSS

#container {
  height: 500px;
  min-width: 310px;
  max-width: 800px;
  margin: 0 auto;
}

.loading {
  margin-top: 10em;
  text-align: center;
  color: gray;
}

JavaScript

// Prepare demo data
// Data is joined to map using value of 'hc-key' property by default.
// See API docs for 'joinBy' for more info on linking data and map.
var data = [
  ['us', 11],
  ['ca', 13],
  ['jp', 15],
  ['no', 27],
  ['sw', 36],
  ['es', 47],
  ['gb', 56],
];

// Create the chart
Highcharts.mapChart('#top-earning-countries-map', {
  chart: {
    map: 'custom/world-palestine-lowres'
  },

  title: {
    text: null
  },

  subtitle: {
    text: null,
  },

  mapNavigation: {
    enabled: true,
    buttonOptions: {
      verticalAlign: 'bottom'
    }
  },

  colorAxis: {
    min: 0
  },
  series: [{
    data: data,
    name: 'Random data',
    states: {
      hover: {
        color: '#BADA55'
      }
    },
    dataLabels: {
      enabled: false,
      format: '{point.name}'
    }
  }],
  credits: {
    enabled: false
  }
});