While this snippet uses the coordinates that correspond to the middle of the US, you can easily replace the coordinates with the location of your choice.
// SET EXPLORE PAGE DEFAULT MAP ZOOM TO THE MIDDLE OF THE UNITED STATES
jQuery(document).ready(function ($) {
if ($(".location-field-wrapper .c27-map").length) {
var mapZoom = setInterval(function () {
if (MyListing.Maps.instances.length) {
MyListing.Maps.instances.forEach((instance) => {
instance.map.setCenter(["-97.922211", "39.381266"]); // starting position [long, lat]
instance.map.setZoom(03);
});
clearInterval(mapZoom);
}
}, 500);
}
});