0.0.5 • Published 7 years ago

leaflet-fontawesome-markers v0.0.5

Weekly downloads
60
License
Apache-2.0
Repository
github
Last release
7 years ago

leaflet-fontawesome-markers NPM version

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.
		markerColor: '#00a9ce',
		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);
0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago