我正在尝试向地图添加另一个标记。
{
//google map functionality
if($("#map_canvas").length > 0) {
initGmap(52.089115,-7.619437, 15);
}
}); // END jQuery(document).ready
有没有人知道我是如何做到这一点的,我已经查了谷歌,但似乎做错了。
答案 0 :(得分:0)
要添加new marker,您需要像这样创建它:
// Barcelona coordinates
var myLatlng = new google.maps.LatLng(2.19, 40.4);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title:"Hello World!"
});
如果您需要多个标记,请检查here。