Advertisement
Guest User

Untitled

a guest
Mar 4th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. var map = L.map( 'map', {
  2. center: [20.0, 5.0],
  3. maxZoom: 16,
  4. minZoom: 2,
  5. zoom: 2
  6. })
  7.  
  8. L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
  9. attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a>',
  10. subdomains: ['a', 'b', 'c']
  11. }).addTo( map )
  12.  
  13. var myURL = jQuery( 'script[src$="leaf-demo.js"]' ).attr( 'src' ).replace( 'leaf-demo.js', '' )
  14.  
  15. var myIcon = L.icon({
  16. iconUrl: myURL + 'images/pin24.png',
  17. iconRetinaUrl: myURL + 'images/pin48.png',
  18. iconSize: [29, 24],
  19. iconAnchor: [9, 21],
  20. popupAnchor: [0, -14]
  21. })
  22.  
  23. var markers = [
  24. ["<b style='font-size:15pt;'> ROXAS CITY CHAPTER </b> <br> <i style='font-size:12pt;'> JUAN DELA CRUZ </i> <br>juan@yahoo.com", 11.58528,122.75111],
  25. ["<b style='font-size:15pt;'> MANILA CITY CHAPTER </b> <br> <i style='font-size:12pt;'> PEDRO DELA CRUZ </i> <br>pedro@gmail.com", 14.599512,120.984222],
  26. ["<b style='font-size:15pt;'> CANADA CHAPTER </b> <br> <i style='font-size:12pt;'> SIMON DELA CRUZ </i> <br>simon@gmail.com", 53.631611 ,-113.323975]
  27. ];
  28. for ( var i=0; i < markers.length; i++ ){
  29. marker = L.marker ([markers[i][1], markers[i][2]], {icon: myIcon})
  30. .bindPopup(markers[i][0])
  31.  
  32. .addTo( map );
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement