rodolpheg

Untitled

Feb 12th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. // Ajout d'un titre
  2. var titre = L.control({position: 'topright'});
  3. titre.onAdd = function (map) {
  4. // création d'un élément <div>
  5. var div = L.DomUtil.create('div', 'info titre');
  6. div.innerHTML = '<h1>Revenu après impôt médian des ménages en 2015</h1><h3>Données du recensement de Statistiques Canada</h3>';
  7. return div;
  8. };
  9. titre.addTo(maCarte);
Advertisement
Add Comment
Please, Sign In to add comment