1
미국의 amCharts amMap에서 작업 중입니다. 맵에 마커를 구현해야합니다. this example을 따르고 있지만 예상대로 작동하지 않습니다. 마커가 제대로 표시되지 않습니다.USA 맵에 대한 ammap에서 좌표가 작동하지 않습니다.
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"
},
});