Skip to content

Instantly share code, notes, and snippets.

@chrtze
Last active August 27, 2016 12:00
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 chrtze/33bb59ae358f0b812fdcc460b17f338f to your computer and use it in GitHub Desktop.
Save chrtze/33bb59ae358f0b812fdcc460b17f338f to your computer and use it in GitHub Desktop.
Hello World Carbide
// display a map with markers
// you can move the markers directly on the map to manipulate the data
let data = [{"latitude":55.13,"longitude":14.52}];
let test = 0.5156;
let mappedOutput = data.map(d => {
d.latitude *= test;
d.longitude *= test;
return d;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment