Advertisement
Guest User

OSM

a guest
Apr 16th, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. var nonExpoIcon = L.icon({
  2. iconUrl: 'map-pin.svg',
  3. iconSize: [38, 95], // size of the icon
  4. iconAnchor: [22, 94], // point of the icon which will correspond to marker's location
  5. popupAnchor: [-3, -76] // point from which the popup should open relative to the iconAnchor
  6. });
  7.  
  8.  
  9. L.marker([51.9616501904087, 15.4580962657928], {icon: nonExpoIcon}).addTo(map)
  10. .bindPopup("<b>Pablo Meble</b><br />66-015, Zielona Góra<br/> ul. Przylep-Sosnowa 1");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement