-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added SNR lines for neighborInfo and direct routes in map #457
base: master
Are you sure you want to change the base?
Conversation
Jamon Terrell seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
@jamon This is awesome, thanks for the submission. |
Directly attached nodes will be drawn immediately so long as your node has it's location set and you've heard from them recently. Connections between other nodes are drawn when you see a NeighborInfo packet from them, but keep in mind that not all nodes have that turned on, and the node doesn't retain that information, so you'll only see the ones that come in while the client is connected. We will be able to add traceroutes as a source of data in the future as well. |
So some of the other app leads had a chat about this change and its awesome to see this contribution, but the new lines on the Map will need to be behind an option users can turn on and off inside the Map instead of simply applying to everyone. I think our mapping lib has an option to enable a layers selector, so this option should be added there. |
yeah, they're already in a separate layer, so it should be pretty easy to enable/disable them. The bigger thing I think will be adding UI to allow filtering on the map--there's no filter ui at all now. It'd probably be helpful to have a few other options in there as well
It also looks like there might be some bugs in the display of the shortname on the map. Not sure if it's specific to me or not, but when you don't have node info, I'm seeing the first 4 of the mac instead of the last 4. |
Initial implementation of SNR route lines (see #456 for discussion)