';
var marker = new AMap.Marker({
content: content,
position: [110.294179,25.367711],
});
map.add(marker);
// 刱建(jiàn) infoWindow 寑例
var content = [
"
"
];
// 刱建 infoWindow 寑(qǐn)例
var infoWindow = new AMap.InfoWindow({
content: content.join("
"), //伝入 dom 對象,或(huò)者(zhě) html 字符串
offset: new AMap.Pixel(0, -20)
});
window.onload = function () {
infoWindow.open(map, marker.getPosition());
}