let map: Maps = new Maps({
layers: [{
shapeData: world_map,
markerSettings: [{
visible: true,
shapeValuePath:'shape',
colorValuePath:'color',
dataSource: [
{ latitude: 49.95121990866204, longitude: 18.468749999999998, name:'Europe', color:'red', shape:'Triangle' },
// Add more
]
}],
}]
}); |