Guest User

Untitled

a guest
Apr 25th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. marker = L.marker()
  2. .setLatLng([lat, lng])
  3. .setIcon(L.divIcon({
  4. className: className ? `div-icon ${className}` : 'div-icon',
  5. iconSize: L.point(x, y),
  6. html: html,
  7. iconAnchor: null
  8. }))
  9. .bindPopup(popupContent, {
  10. autoClose: false,
  11. autoPan: false,
  12. className: className,
  13. closeButton: false
  14. });
Add Comment
Please, Sign In to add comment