I try to use package agm-oms(https://www.npmjs.com/package/agm-oms) to implement the marker spiderfier on google map. I followed the instructions in (https://github.com/SebastianM/angular-google-maps/pull/1329).
<agm-map (mapReady)="mapReady($event)">
<agm-marker-cluster [maxZoom]="10" imagePath="https://raw.githubusercontent.com/googlemaps/v3-utility-library/master/markerclustererplus/images/m">
<agm-marker-spider>
<agm-marker *ngFor="let marker of markers" [latitude]="marker.lat" [longitude]="marker.lang">
<agm-snazzy-info-window [closeWhenOthersOpen]="true">
<ng-template>
<div class="row pop-over-content">
...
</div>
</ng-template>
</agm-snazzy-info-window>
</agm-marker>
</agm-marker-spider>
</agm-marker-cluster>
</agm-map>
Right now, the markers in spiderfier are overlapped with each other. I hope to find a way to set the icon for the marker spiderfier so that: before clicking the marker spiderfier, the icon is like a marker cluster ( which has the number of markers in the icon). After clicking the spiderfier, each marker in the spiderfier displays their own icon. Any ideas on how to achieve the above feature? Thank you very much in advance for your help.