Open andreadompe opened 7 years ago
@andreadompe : were you able to find a fix for this ? Thanks.
Plz do like this, and always have a wrapper div
when you deal with Angular html.
<custom-marker position="NewYork">
<div>
<i class="fa fa-truck" aria-hidden="true"></i>
</div>
</custom-marker>
I'm sorry for hijacking this, but I have a similar issue; except I also use a ng-repeat. Below is my code. Is it not supported?
<custom-marker ng-repeat="prop in props" position="{{prop.lat}},{{prop.lon}}" title="{{prop.name}}">
<div>
<i class="fa fa-print" aria-hidden="true"></i>
</div>
</custom-marker>
Regards,
I fixed it by using the code like above, and I'm not sure why it didn't work at the time of my comment.
Hi All, i need to use font awesome like markers, the only way i found is
But on the map the icon is duplicated
This is my plunker https://plnkr.co/edit/rbUSp01ZpdS4s1KTA1AN?p=preview
How can i do?
Please help me.