Marker moves itself vertically in LeafletJS with Google Maps Satellite (Birds Eye) -


check out demo: http://jsfiddle.net/vudec/3/

it's using google's satellite layer (in example: zoom=20), birds eye mode enabled , marker.

var map = new l.map('map_canvas', {     center: new l.latlng(39.868841, -4.021938),     zoom: 20 });  var ggl = new l.google('satellite'); map.addlayer(ggl);  var marker = new l.marker(new l.latlng(39.868841, -4.021938)); map.addlayer(marker); 

if drag vertically map (or use function map.panby()) see marker moving or down (vertically). , shouldn't.

if drag or movement horizontal, no problem.

if disabled birds eye (or set lower zoom), issue disappear.

at least happens polygons too.

btw, google maps api doesn't happen: http://jsfiddle.net/ew332/1/

i don't understand why issue. thank much

it seems it's bug of plugin, can read more here , now, there no fix


Comments

Popular posts from this blog

php - SPIP: From Tag directly to an article -

jquery - isAjaxRequest always return false -

ruby on rails - In a controller spec, how to find a specific tag in the generated view? -