我有这个功能,可以将新标记添加到谷歌地图。
但是中心不起作用。有什么建议吗?
function addMarker(lat, lng, name){
new google.maps.Marker({
map: map,
icon: image,
position: new google.maps.LatLng(lat, lng),
title: name,
center: new google.maps.LatLng(lat, lng),
zoom: 6
});
}
但center
不起作用。