Files
iD/modules/svg/point_transform.js
2016-06-16 11:58:23 -07:00

8 lines
228 B
JavaScript

export function PointTransform(projection) {
return function(entity) {
// http://jsperf.com/short-array-join
var pt = projection(entity.loc);
return 'translate(' + pt[0] + ',' + pt[1] + ')';
};
}