Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. var LeafIcon = L.Icon.extend({
  2. options: {
  3. iconSize: [38, 95],
  4. shadowSize: [50, 64],
  5. iconAnchor: [22, 94],
  6. popupAnchor: [-3, -10]
  7. }
  8. });
  9.  
  10. var greenIcon = new LeafIcon({iconUrl: 'http://leafletjs.com/docs/images/leaf-green.png'}),
  11. redIcon = new LeafIcon({iconUrl: 'http://leafletjs.com/docs/images/leaf-red.png'}),
  12. orangeIcon = new LeafIcon({iconUrl: 'http://leafletjs.com/docs/images/leaf-orange.png'});
  13.  
  14.  
  15. L.marker([51.5, -0.071], {icon: greenIcon}).bindPopup("<p>ok</p><p>tada</p>.").addTo(map);
  16. L.marker([51.5, -0.073], {icon: redIcon}).bindPopup("I am a red leaf.").addTo(map);
  17. L.marker([51.5, -0.076], {icon: orangeIcon}).bindPopup("I am an orange leaf.").addTo(map);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement