I am looking at the highmap from highcharts for angular 2 and looking at this demo:
http://plnkr.co/edit/AmDfKwhRhshFn3CPprkk?p=preview
Here, the series is like:
series : [{
name: 'UTC',
data: ['IE', 'IS', 'GB', 'PT'].map(function (code) {
return { code: code };
})
}, {
name: 'UTC + 1',
data: ['NO', 'SE', 'DK', 'DE', 'NL', 'BE', 'LU', 'ES', 'FR', 'PL', 'CZ', 'AT', 'CH', 'LI', 'SK', 'HU','SI', 'IT', 'SM', 'HR', 'BA', 'YF', 'ME', 'AL', 'MK'].map(function (code) {
return { code: code };
})
}, {
name: 'UTC + 2',
data: ['FI', 'EE', 'LV', 'LT', 'BY', 'UA', 'MD', 'RO', 'BG', 'GR', 'TR', 'CY'].map(function (code) {
return { code: code };
})
}, {
name: 'UTC + 3',
data: ['RU'].map(function (code) {
return { code: code };
})
}]
However, I want to provide coordindates (lat long) to plot the points. Is it possible to do this? If yes, how? Please note that I am looking for a solution specific to Angular 2