我想在ammap地图上添加一个圆形标记。标记应以柏林为中心,其纬度为52.523407,经度为13.4114(您可以验证这些坐标here)。
以下是尝试此操作的网页的源代码。 jsFiddle example也是可用的。
<html>
<head>
<script src="ammap.js" type="text/javascript"></script>
<script src="germanyLow.js" type="text/javascript"></script>
<script type="text/javascript">
var dataPoints = [{
latitude: 52.523407,
longitude: 13.4114,
type: 'bubble',
color: '#CC0000',
fixedSize: false,
alpha: 0.5,
height: 50,
width: 50
}];
AmCharts.ready(function() {
// create AmMap object
var map = new AmCharts.AmMap();
// set path to images
map.pathToImages = "images/map";
var dataProvider = {
mapVar: AmCharts.maps.germanyLow,
getAreasFromMap:true,
images: dataPoints
};
// pass data provider to the map object
map.dataProvider = dataProvider;
map.areasSettings = {
autoZoom: true,
selectedColor: "#CC0000"
};
// write the map to container div
map.write("mapdiv");
});
</script>
</head>
<body>
<div id="mapdiv" style="width: 600px; height: 400px;"></div>
</body>
</html>
如果您打开此页面,则会看到以下内容。我自己添加了黑色箭头以指示圆圈的位置。正如你所看到的那样,圆圈的中心位于西北方向约150公里处。如果我添加其他标记,它们也位于我预期的约150公里西北。我做错了什么,或者这是一个错误?
答案 0 :(得分:1)
您应该将“centered:false”属性添加到MapImage:
var dataPoints = [{
latitude: 52.523407,
longitude: 13.4114,
type: 'bubble',
color: '#CC0000',
fixedSize: false,
alpha: 0.5,
height: 50,
width: 50,
centered: false
}];
这是你的更新小提琴: