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