-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
I just plugged in the debug demo code below into a minimal map where L.geoJson() layers already exist, to try out rlayer.
On pan both existing L.geoJson() layer's position gets reset to the center.
(this shouldn't be happening.)
Then tried to replace L.geoJson() with R.GeoJSON() and got a leaflet-side id error.
using Leaflet-Leaflet-v0.5.1-0-gc1d410f.zip.
var adelaide = new L.LatLng(-34.93027490891421, 138.603875041008);
var points = [];
map.on('click', function(e) {
points.push(e.latlng);
if(points.length == 4) {
var p = new R.Polygon(points);
map.addLayer(p);
p.hover(function() {
},
function() {
p.animate({opacity: 0}, 1000, function() { map.removeLayer(p); });
});
points = [];
}
var b = new R.BezierAnim([adelaide , e.latlng], {}, function() {
var p = new R.Pulse(
e.latlng,
6,
{'stroke': '#2478ad', 'fill': '#30a3ec'},
{'stroke': '#30a3ec', 'stroke-width': 3});
map.addLayer(p);
setTimeout(function() {
map.removeLayer(b).removeLayer(p);
}, 3000);
});
map.addLayer(b);
});
Metadata
Metadata
Assignees
Labels
No labels