Guest User

Untitled

a guest
Feb 16th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. var points = new L.geoJson(null, {
  2. onEachFeature: function (feature, layer) {
  3. layer.bindPopup(feature.properties.id);
  4. layer.bindTooltip(feature.properties.id + '', {
  5. sticky: true,
  6. direction: 'top'
  7. });
  8. }
  9. }).addTo(map)
Add Comment
Please, Sign In to add comment