Skip to content

clodio/Leaflet.ExtraMarkers

 
 

Repository files navigation

Leaflet.extra-markers plugin v1.0.0

Big Thanks to lvoogdt of Leaflet.awesome-markers

This plugin depends on either Bootstrap, Font-Awesome, or Semantic-UI for the rendering of the icons. See these urls above for more information.

##Icons Version 1.0 of Leaflet.extra-markers is designed for:

Screenshots

ExtraMarkers screenshot

Demo

##Using the plugin

1. Requirements

Follow the getting started guide for the desired font library and make sure its included in your project.

2. Installing Leaflet.extra-markers

Next, copy the dist/img directory, /dist/css/leaflet.extra-markers.min.css, and /dist/js/leaflet.extra-markers.min.js to your project and include them:

<link rel="stylesheet" href="css/leaflet.extra-markers.min.css">

or

@import 'bower_components/src/assets/less/Leaflet.extra-markers.less

and

<script src="js/leaflet.extra-markers.min.js"></script>
3. Creating a Marker

Now use the plugin to create a marker like this:

  // Creates a red marker with the coffee icon
  var redMarker = L.ExtraMarkers.icon({
    icon: 'fa-coffee',
    markerColor: 'red',
    shape: 'square',
    prefix: 'fa'
  });

  L.marker([51.941196,4.512291], {icon: redMarker,}).addTo(map);

Properties

Property Description Default Value Possible values
icon Name of the icon WITH prefix 'fa-home' See glyphicons or font-awesome (must include prefix)
prefix Select de icon library 'glyphicon' 'fa' for font-awesome or 'glyphicon' for bootstrap 3
markerColor Color of the marker 'blue' 'red', 'orange-dark', 'orange', 'yellow', 'blue-dark', 'cyan', 'purple', 'violet', 'pink', 'green-dark', 'green', 'green-light', 'black', 'white'
shape Shape of the marker 'circle' 'circle', 'square', 'star', 'penta'
iconColor Color of the icon 'white' 'white', 'black' or css code (hex, rgba etc)
spin REMOVED false true or false. Font-awesome required
extraClasses Additional classes in the created tag '' 'fa-rotate90 myclass' eller other custom configuration
number Add a text number to the icon '' any number, must use icon fa-number

License

About

Custom Markers for Leaflet JS based on Awesome Markers

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 58.5%
  • JavaScript 41.5%