I am trying to assign an array to a marker in the javascript function below. It does not work with push, or with the commented out statement either. I am not sure if a map marker is allowed to have an array. The marker.mycategory works fine, it is only the array that doesn't work.
function createMarker(latlng, name, html, category, animals)
{
var markerImg = setMarker(category);
var contentString = html;
var marker = new google.maps.Marker({
position: latlng,
map: map,
title: name,
icon: markerImg,
});
for (var i = 0; i
以上就是How to assign value to google map marker array in javascript的详细内容,更多请关注web前端其它相关文章!