Hi there,
Thank you for getting back to me. Yes, I see, it appears the override is not applying in this case.
Please try replacing this script with the following instead:
jQuery(function($){
$(document.body).on("click", ".wpgmaps_mlist_row, .wpgmaps_blist_row", function(event) {
WPGMZA.maps[0].setZoom(1);
});
});
I believe this is due to the fact that our initial even binding happens sooner than the override function occurs. This means this static binding should work as expected.
I hope this helps?