Marker with highcharts
index.html
<!DOCTYPE html>
<html>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Geometry Styles - Marker with highcharts</title>
  <style type="text/css">
    html,body{margin:0px;height:100%;width:100%}
    .container{width:100%;height:100%}
  </style>
  <link rel="stylesheet" href="https://unpkg.com/maptalks/dist/maptalks.css">
  <script type="text/javascript" src="https://unpkg.com/maptalks/dist/maptalks.min.js"></script>
  <body>

    <script type="text/javascript" src="highcharts.js"></script>
    <div id="map" class="container"></div>

    <script>
      var map = new maptalks.Map('map', {
        center: [-0.113049,51.49856],
        zoom: 14,
        baseLayer: new maptalks.TileLayer('base', {
          urlTemplate: 'https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png',
          subdomains: ["a","b","c","d"],
          attribution: '&copy; <a href="http://osm.org">OpenStreetMap</a> contributors, &copy; <a href="https://carto.com/">CARTO</a>'
        })
      });

      var highChartsUI = new maptalks.ui.UIMarker([-0.113049, 51.49856], {
        'draggable'     : true,
        'content'       : createBar()
      }).addTo(map).show();

      function createBar() {
        var dom = document.createElement('div');
        dom.style.cssText = 'min-width: 300px; height: 300px; margin: 0 auto;';
        new Highcharts.Chart({
          chart: {
            renderTo: dom,
            backgroundColor: 'rgba(255, 255, 255, 0.8)',
            type: 'area',
            spacingBottom: 30
          },
          title: {
            text: 'Fruit consumption *'
          },
          subtitle: {
            text: '* Jane\'s banana consumption is unknown',
            floating: true,
            align: 'right',
            verticalAlign: 'bottom',
            y: 15
          },
          legend: {
            layout: 'vertical',
            align: 'left',
            verticalAlign: 'top',
            x: 150,
            y: 100,
            floating: true,
            borderWidth: 1,
            backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF'
          },
          xAxis: {
            categories: ['Apples', 'Pears', 'Oranges', 'Bananas', 'Grapes', 'Plums', 'Strawberries', 'Raspberries']
          },
          yAxis: {
            title: {
              text: 'Y-Axis'
            },
            labels: {
              formatter: function () {
                return this.value;
              }
            }
          },
          tooltip: {
            formatter: function () {
              return '<b>' + this.series.name + '</b><br/>' +
                        this.x + ': ' + this.y;
            }
          },
          plotOptions: {
            area: {
              fillOpacity: 0.5
            }
          },
          credits: {
            enabled: false
          },
          series: [{
            name: 'John',
            data: [0, 1, 4, 4, 5, 2, 3, 7]
          }, {
            name: 'Jane',
            data: [1, 0, 3, null, 3, 1, 2, 1]
          }]
        });
        return dom;
      }

    </script>
  </body>
</html>
Copied!