danwild / leaflet-fa-markers

Simple svg map markers with FontAwesome icons.

Home Page:https://danwild.github.io/leaflet-fa-markers/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

leaflet-fa-markers NPM version NPM Downloads

Very simple vector markers with FontAwesome icons, compatible with Leaflet v1.

Screenshot

Use:

var blueMarker = L.marker([lat, lon], {
  icon: L.icon.fontAwesome({
    iconClasses: "fa fa-info-circle", // you _could_ add other icon classes, not tested.
    // marker/background style
    markerColor: "#00a9ce",
    markerFillOpacity: 0.2,
    markerStrokeWidth: 1,
    markerStrokeColor: "grey",
    // icon style
    iconColor: "#FFF"
  })
}).addTo(map);

var spinningMarker = L.marker([lat, lon], {
  icon: L.icon.fontAwesome({
    iconClasses: "fa fa-circle-o-notch fa-spin",
    markerColor: "#ff89b5",
    iconColor: "#FFF",
    // use XY offsets to nudge positioning of icons, negative accepted
    iconXOffset: -2,
    iconYOffset: 0
  })
}).addTo(map);

// update existing
blueMarker.options.icon.setStyle({ markerColor: "#F00" });

Public methods

method params description
setStyle {Object} update the icon with new style config

About

Simple svg map markers with FontAwesome icons.

https://danwild.github.io/leaflet-fa-markers/

License:Other


Languages

Language:JavaScript 52.5%Language:HTML 41.4%Language:CSS 6.1%