Skip to content

Instantly share code, notes, and snippets.

@RikdeBoer
Created December 21, 2019 03:44
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 RikdeBoer/9dff10cfb4cb7b82f5812b0103b97412 to your computer and use it in GitHub Desktop.
Save RikdeBoer/9dff10cfb4cb7b82f5812b0103b97412 to your computer and use it in GitHub Desktop.
Leaflet font-icon marker
<!DOCTYPE html>
<html lang="en">
<head>
<title>Leaflet - Font icon marker</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"/>
<link href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css" rel="stylesheet" integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js" integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew==" crossorigin=""></script>
<style>
.mymarker {
color: purple;
font-size: 50px;
}
.leaflet-popup {
margin-bottom: 72px;
}
</style>
</head>
<body>
<div id="map-placeholder" style="height:400px"></div>
<script>
const size = 50; // needs to correspond to font-size above
const iconOptions = {
iconSize : [size, size],
iconAnchor: [size/2 + 1, size + 7],
className : 'mymarker',
html: '<span class="glyphicon glyphicon-home"></span>'
}
const markerOptions = {
draggable: true,
icon: L.divIcon(iconOptions)
}
const center = [-37.8178, 144.968]
const myMap = L.map('map-placeholder').setView(center, 15)
const myMarker = L.marker(center, markerOptions).addTo(myMap)
myMarker
.bindPopup('I am a font-icon marker.<br/><br/>You can drag me too.')
.openPopup()
myMap.addLayer(L.tileLayer(
'https://maps.wikimedia.org/osm-intl/{z}/{x}/{y}@2x.png',
{ attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contr.' }
))
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment