当创建具有设置了htmlContent属性的图钉的地图时,当图钉离开地图区域时,事件可以变为未绑定(例如:放大然后缩小)。
重新制作的步骤:
加载地图 点击图钉(应该提醒) 放大地图上的任何位置,以便图钉不再在地图上 缩小 再次点击图钉(将不再提醒) 当图钉没有设置htmlContent属性时,不会发生这种情况。
我在这里创建了演示:
破碎的例子:http://jsfiddle.net/wYddq/3/
var pushpinOptions = {width: null, height: null, htmlContent: "<div style='font-size:12px;font-weight:bold;border:solid 2px;background-color:LightBlue;width:100px;'>Custom Pushpin</div>"};
工作示例:http://jsfiddle.net/wYddq/4/
var pushpinOptions = {width: null, height: null};
在Chrome 24(W7和OSX),IE9(W7)和IE10(W8)中测试,结果相同。
答案 0 :(得分:0)