Sha256: eabc8fb17412920d348c2818cada9d2c18e06d6c362c47977796d51df5822e7e
Contents?: true
Size: 1.41 KB
Versions: 6
Compression:
Stored size: 1.41 KB
Contents
<html> <head> <title>Test for preservation of Icon DOM element</title> <link rel="stylesheet" href="../../dist/leaflet.css" /> <link rel="stylesheet" href="../css/screen.css" /> <script type="text/javascript" src="../../build/deps.js"></script> <script src="../leaflet-include.js"></script> </head> <body> <div id="map" style="width: 600px; height: 600px; border: 1px solid #ccc"></div> <script type="text/javascript"> var blueIcon = new L.Icon({iconUrl: 'http://www.webatlas.no/webatlasapi/v/071009/media/interface/default/markers/flag_blue.gif'}); var redIcon = new L.Icon({iconUrl: 'http://www.webatlas.no/webatlasapi/v/071009/media/interface/default/markers/flag_red.gif'}); var map = L.map('map').setView( [50, 50], 10); var marker = L.marker([50, 50], {icon: blueIcon, draggable: true}); marker.on('dragstart', function () { console.log('dragstart'); marker.setIcon(redIcon); //This is the previous workaround: //var iconElem = L.DomUtil.get(marker._icon); //iconElem.src = 'http://www.webatlas.no/webatlasapi/v/071009/media/interface/default/markers/flag_red.gif'; }); marker.on('dragend', function () { console.log('dragend'); marker.setIcon(blueIcon); //This is the previous workaround: //var iconElem = L.DomUtil.get(marker._icon); //iconElem.src = 'http://www.webatlas.no/webatlasapi/v/071009/media/interface/default/markers/flag_blue.gif'; }); marker.addTo(map); </script> </body> </html>
Version data entries
6 entries across 6 versions & 1 rubygems