Created
December 21, 2019 03:44
-
-
Save RikdeBoer/d98325632b8479757f4d32927e73bd01 to your computer and use it in GitHub Desktop.
Leaflet emoji marker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Leaflet - Emoji marker</title> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link href="https://unpkg.com/[email protected]/dist/leaflet.css" rel="stylesheet" integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin=""/> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew==" crossorigin=""></script> | |
<style> | |
.mymarker { font-size: 50px; } | |
.leaflet-popup { | |
margin-bottom: 70px; | |
} | |
</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, size + 9], | |
className : 'mymarker', | |
//runner, medium skin tone, Zero-Width-Joiner, female: | |
html: '🏃🏽♀' // or: '🏃🏽‍♀' | |
} | |
const markerOptions = { | |
draggable: true, | |
icon: L.divIcon(iconOptions) | |
} | |
const center = [-37.8178, 144.968] | |
const myMap = L.map('map-placeholder').setView(center, 9) | |
const myMarker = L.marker(center, markerOptions).addTo(myMap) | |
myMarker | |
.bindPopup('I am an emoji marker, a runner, <br/>female with medium dark skin.<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