1、不能保存有可能是系统卡了吧,建议使用高配的电脑写代码。
2、不能保存也有可能是ide开发环境的问题,以后使用稳定的集成开发环境。
3、及时备份代码。
svg.selectAll(".place-label")
.data(topojson.feature(uk, uk.objects.places).features)
.enter().append("text")
.attr("class", "place-label")
.attr("transform", function(d) { return "translate(" + projection(d.geometry.coordinates) + ")"; })
.attr("dy", ".35em")
.text(function(d) { return d.properties.name; })