Hi, I got a connection to \koolreport\widgets\google\GeoChart but The markers don't appear on the map.
(I created my API credentials from Google Cloud Platform)
this is the code on my Myreport.view.php
\koolreport\widgets\google\GeoChart::create([
"title"=>"World Polulation 2016",
"dataSource"=>[
    ['City',   'Population', 'Area'],
    ['Rome',      2761477,    1285.31],
    ['Milan',     1324110,    181.76],
    ['Naples',    959574,     117.27],
    ['Turin',     907563,     130.17],
    ['Palermo',   655875,     158.9],
    ['Genoa',     607906,     243.60],
    ['Bologna',   380181,     140.7],
    ['Florence',  371282,     102.41],
    ['Fiumicino', 67370,      213.44],
    ['Anzio',     52192,      43.43],
    ['Ciampino',  38262,      11]
],
'mapsApiKey'=> 'xxxxxxxxxxxxxxxxxx',
"options"=>[
    "region"=>'IT',
    "displayMode" => 'markers',
    "colorAxis" => ["colors"=> ['green', 'blue']]
]
]);
