'+title+'

'+comment+'
'+author+'
';
marker.bindPopup(myinfo, {minWidth: '+width+'});
if (typeof L.MarkerClusterGroup === 'function')
markers.addLayer(marker);
else
map.addLayer(marker);
MarkerClusterList.push(marker);
}
if (typeof L.MarkerClusterGroup === 'function')
map.addLayer(markers);
var group = new L.featureGroup(MarkerClusterList);this.map.whenReady(function () {
window.setTimeout(function () {
map.fitBounds(group.getBounds());
}.bind(this), 200);
}, this);