I all,
when I add marker to OverlappingMarkerSpiderfier obj I receive this error:
Cannot read properties of undefined (reading 'fromLatLngToDivPixel')
this is my implementation:
const oms = new OverlappingMarkerSpiderfier(this._gmap, this._otm?.olOptions);
this._markers.forEach((marker: google.maps.Marker) => {
oms.trackMarker(marker, () => {});
});
I don't understand the problem