添加标记

时间:2015-03-02 15:10:22

标签: javascript jquery google-maps

我正在尝试向地图添加另一个标记。

{
    //google map functionality
    if($("#map_canvas").length > 0) {
        initGmap(52.089115,-7.619437, 15);
    }

}); // END jQuery(document).ready

有没有人知道我是如何做到这一点的,我已经查了谷歌,但似乎做错了。

1 个答案:

答案 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