Skip to content

Instantly share code, notes, and snippets.

@pikesley
Created April 2, 2018 11:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pikesley/0197f9ea8aff737e6b80c945f741d584 to your computer and use it in GitHub Desktop.
Save pikesley/0197f9ea8aff737e6b80c945f741d584 to your computer and use it in GitHub Desktop.
FontAwesome 5 SVGs with Leaflet.awesome-markers

I recently started using FontAwesome 5's beautiful SVG icons. However I was unable to get them to work on my Leaflet.js markers using https://github.com/lvoogdt/Leaflet.awesome-markers

After a little poking around in the inspection window, I came up with this:

  • You need to give the extraClasses value in your marker definition (fas or fab or whatever, it's on the FontAwesome page for each icon)
  • The default layout is not great, but a little CSS fixes it right up. You'll want to constrain it to only these icons though, using some SASS nesting, or it will screw up all the other FA icons on your page

I hope somebody finds this useful

var marker = L.AwesomeMarkers.icon({
markerColor: 'blue',
prefix: 'fa',
extraClasses: 'fas',
icon: 'music'
});
#map {
.svg-inline--fa {
font-size: 1.2em;
margin-top: 10px;
}
}
@RomanHiden
Copy link

Thank you this was really helpful, and its not stated in the documentation.

@Arch4060
Copy link

this didn't work for me, when I do prefix: fa icon: info-circle and extraClasses: fas it makes the class fas fa fa-info-circle which doesn't work because there is an extra fa

In addition to that you have to adapt leaflet.awesome-markers.js to get rid of the additional 'fa' from:

return "<i " + iconColorStyle + "class='" + options.extraClasses + " " + options.prefix + " " + iconClass + " " + iconSpinClass + " " + iconColorClass + "'></i>";

to (delete options.prefix)

return "<i " + iconColorStyle + "class='" + options.extraClasses + " " + iconClass + " " + iconSpinClass + " " + iconColorClass + "'></i>";

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment