I am working on an amCharts amMap for the USA. I need to implement markers on the map. I am following this example, but it is not working as expected. The markers are not showing properly.
CODE
var map = AmCharts.makeChart("chartdiv", {
type: "map",
"theme": "light",
imagesSettings: {
rollOverColor: "#089282",
rollOverScale: 3,
selectedScale: 3,
selectedColor: "#089282",
color: "#13564e"
},
colorSteps: 10,
dataProvider: {
map: "usaLow",
images: [{
zoomLevel: 5,
scale: 0.5,
title: "Dallas",
latitude: 32.82092,
longitude: -97.0115
}, {
zoomLevel: 5,
scale: 0.5,
title: "Florida",
latitude: 25.7824,
longitude: -80.3011
}]
},
areasSettings: {
autoZoom: false,
unlistedAreasColor: "#81c5e8"
},
});