I have a large network with X/Y coordinates similar to this, and I was wondering how I can create my own in version but with my X/Y data.
The issue isn't necessarily drawing the line but being able to zoom in and out and drag the map. The X values range from 0 to 130000 and Y values -37000 to +20000. I also need to be able to put my mouse over a line to get a tooltip (probably info window).
Feel free to ask for clarity and I will reply and edit the main post.
Nodes and edges can be found here: https://drive.google.com/file/d/1j7ev9vfHy-k7AoEmRGjGLheY7-vZ7nUg/view?usp=sharing
public class Node
{
public long Id { get; set; }
public double X { get; set; }
public double Y { get; set; }
}
public class Edge
{
public Edge()
{
Nodes = new List<long>();
}
public long Id { get; set; }
public List<long> Nodes { get; set; }
}
Thanks in advance.