map.on "click", (e) ->
if count >= 2
map.removeLayer(newMarkerGroup)
count = 0
return
else
newMarker = new L.marker(e.latlng).addTo(map)
count= count+1
return
为什么我会收到意外的if语句,我认为我的代码是正确缩进的?!
答案 0 :(得分:0)
找到解决方案。 Notepad ++表现得很奇怪,当它看到4个白色空格时立即添加标签,而coffeescript不喜欢它。只需在Notepad ++中关闭该选项。