Created
September 25, 2014 22:20
-
-
Save geografa/26d9adef917083026ce5 to your computer and use it in GitHub Desktop.
Custom tooltip
This file contains 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> | |
<head> | |
<meta charset=utf-8 /> | |
<title>A simple map</title> | |
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
<script src='https://api.tiles.mapbox.com/mapbox.js/v2.0.0/mapbox.js'></script> | |
<link href='https://api.tiles.mapbox.com/mapbox.js/v2.0.0/mapbox.css' rel='stylesheet' /> | |
<style> | |
body { margin:0; padding:0; } | |
#map { position:absolute; top:0; bottom:0; width:100%; } | |
</style> | |
</head> | |
<body> | |
<style> | |
/* | |
* These CSS rules affect the tooltips within maps with the custom-popup | |
* class. See the full CSS for all customizable options: | |
* https://github.com/mapbox/mapbox.js/blob/001754177f3985c0e6b4a26e3c869b0c66162c99/theme/style.css#L321-L366 | |
*/ | |
.custom-popup .leaflet-popup-content-wrapper { | |
background:#bada55; | |
color:#fff; | |
font-size:16px; | |
line-height:24px; | |
} | |
.custom-popup .leaflet-popup-content-wrapper a { | |
color:rgba(0,0,0,0.5); | |
} | |
.custom-popup .leaflet-popup-tip-container { | |
width:30px; | |
height:15px; | |
} | |
.custom-popup .leaflet-popup-tip { | |
border-left:15px solid transparent; | |
border-right:15px solid transparent; | |
border-top:15px solid #bada55; | |
} | |
</style> | |
<div class="custom-popup " id='map'></div> | |
<script> | |
L.mapbox.accessToken = 'pk.eyJ1IjoiZ3JhZmEiLCJhIjoiU2U2QnIzUSJ9.4LnG05Ptvi1sUQ8t68rfgw'; | |
var map = L.mapbox.map('map', 'dcvijanovic.jio7c6ea') | |
.setView([40, -74.50], 3); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment