Guest User

Untitled

a guest
Feb 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. var myIcon = L.icon({
  2. iconUrl: '<img src="feature.properties.description">',
  3. iconSize: [40, 40]
  4. });
  5.  
  6. var geojsonLayerP = new L.GeoJSON.AJAX("https://raw.githubusercontent.com/marinespatialviz/marinespatialviz/master/litter.geojson", {
  7. pointToLayer: function(feature, yx) {
  8. var marker = L.marker(yx, {icon: myIcon});
  9. marker.bindTooltip('<p>' + feature.properties.description + '</p>')
  10. return marker;
  11. }
  12. }).addTo(map);
Add Comment
Please, Sign In to add comment