I'm using the following code to set the markers to visible but it doesn't work
with 2014 release.
$('#map_canvas').gmap('find', 'markers', { 'property': 'tags', 'value':
filters, 'operator': 'OR' }, function (marker, found) {
marker.set("labelVisible", found); // not working as of 2014
//marker.setVisible(found); //no working after custom pins
});
} else {
$.each($('#map_canvas').gmap('get', 'markers'), function (i, marker) {
//$('#map_canvas').gmap('addBounds', marker.position);
marker.set("labelVisible", false);
//marker.setVisible(false);
});
}
Original issue reported on code.google.com by param8...@gmail.com on 13 May 2014 at 6:27
Original issue reported on code.google.com by
param8...@gmail.com
on 13 May 2014 at 6:27