we can not see your code, but you appear to have a Blazor component wrap a google map. this takes extreme care. both libraries directly update the dom, and can overwrite each others content (this is why jQuery is usually a bad idea with Blazor apps).
have the Blazor component renders a <div id="map"> that the map applies to. also do not use the browser load event, but rather the Blazor component OnAfterRender event to create the map:
var map = new google.maps.Map(document.getElementById("map"), mapOptions);