Skip to content

Instantly share code, notes, and snippets.

@TweededBadger
Created October 18, 2014 23:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TweededBadger/91f8d660b7d1898ccc39 to your computer and use it in GitHub Desktop.
Save TweededBadger/91f8d660b7d1898ccc39 to your computer and use it in GitHub Desktop.
angular.module('SvgMapApp').filter('map_colour', [function () {
return function (input) {
var b = 255 - Math.floor(input * 255);
var g = Math.floor(input * 255);
return "rgba(255," + g + "," + b + ",1)";
}
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment