I work with the Google Maps API, and although I can add and customize my own markers and info windows, the base map has these default markers that display these info windows when clicked (figure below).
Is there a way to remove this behavior or implement my own (so that they are more compatible with the behavior of markers added by my application) by clicking on these locations?
For example, it would be nice to be able to add my own marker when clicking on these markers. Sort of:
defaultMarker.addListener("click", function () {
myMarker = new google.maps.Marker({ ... });
});
Except ... I don't know a way to capture these markers by default.
Sorry if this was earlier, or if I just missed something basic, but I could not find the documentation for these “default markers” due to the lack of better terminology.

U-DON source
share