Skip to content

Instantly share code, notes, and snippets.

@LouisaKB
Created November 8, 2016 11:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save LouisaKB/0d3e13823d1e859b45a82eb209e62826 to your computer and use it in GitHub Desktop.
Save LouisaKB/0d3e13823d1e859b45a82eb209e62826 to your computer and use it in GitHub Desktop.
function drawMarker(color) {
return function (i) {
var icon = L.divIcon({
className: "glyphicon glyphicon-map-marker map-marker " + color
});
L.marker(i, {icon: icon}).addTo(markerLayer);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment