How I Built A Data-Driven Map With Neo4J And JavaScript
Building on top of Neo4J data: detecting dark theme, retrieving events & mapping them. Opportunities abound for anyone to create something new.
💡 Inception
// Detect dark theme
var iframe = document.getElementById('tweet-1761440186745962987-311');
if (document.body.className.includes('dark-theme')) {
iframe.src = "https://platform.twitter.com/embed/Tweet.html?id=1761440186745962987&theme=dark"
}
Then I wanted to get all the events from a data perspective... and eventually put them on a map like this one:
🎯 About
The purpose of this post is to show:
🧰 How I did it
💡 The opportunities it opens for anyone to build anything on top of these data.
🍿 Demo
🔖 Refs
🗓️ Neo4J GraphSummit eve...