-
Notifications
You must be signed in to change notification settings - Fork 25
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
Let users choose where they audit #1702
Comments
This came up a lot during our class session with students as well.
…Sent from my iPhone
On May 1, 2019, at 3:53 PM, Mikey Saugstad ***@***.***> wrote:
Some users will want to specifically audit the block that they live on (at least one user has emailed recently about this). Would be nice to drop into a particular location in the same way you can on Google Maps.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
I think Aditya started working on it partially from the admin dashboard
side - dropping directly into a specific pano. Dropping to a specific
address has been a common request in the past as well. I would assume we
could utilize Google Maps’ address lookup process somehow.
|
Right, forgot to mention that we have an endpoint to go directly to a lat-lng coordinate, but we also need to know the |
One user emailed us about this and said:
|
As @jonfroehlich mentioned in #2325 people are still requesting more control over where they audit |
I could see us implementing this in two ways:
1. You drop a pin or avatar where you want to audit and the navigation map
no longer tells you where to go but just says something like “open
exploration”. Could also show which roads have been audited in that map (if
we want to give more feedback).
2. We precalculate routes. User mouses over and selects the route they want
in their neighborhood.
Option 1 seems easiest and probably best? Also, this would be a new mission
type.
|
I think that similar to dropping a pin would be entering an address into a text box (like you do in Google Maps). These definitely aren't mutually exclusive. Why would this need to be a new mission type though? I think that the easiest version of this is that you pick where you want to start using this method, then you continue auditing as normal. |
Sure, we could offer both and they represent two different HCI paradigms: search and direct manipulation. I like the drag-and-drop avatar technique that Google Maps uses for GSV placement because it's highly interactive but I imagine the text box could be easier to implement as a proof-of-concept.
Good point. This would be easiest (but we could explore a true open explorer option too). Probably still want it to be labeled as a different mission type for tracking purposes though, right? |
Hmm not sure. I think it makes a lot of sense for the truly open exploration to have a different mission type. Not sure just choosing a starting location should have that though. They can already choose a neighborhood and jump to a different (randomized) part of the neighborhood. Not sure how much different it is to choose a particular street. |
Gotcha. As long as we're able to analyze how often this "feature" was used
and how user behavior was different when choosing a location...
Jon
…On Mon, Oct 19, 2020 at 11:57 AM Mikey Saugstad ***@***.***> wrote:
Good point. This would be easiest (but we could explore a true open
explorer option too). Probably still want it to be labeled as a different
mission type for tracking purposes though, right?
Hmm not sure. I think it makes a lot of sense for the truly open
exploration to have a different mission type. Not sure just choosing a
starting location should have that though. They can already choose a
neighborhood and jump to a different (randomized) part of the neighborhood.
Not sure how much different it is to choose a particular street.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1702 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAML55ICVD6D646GD2SCZ7DSLSD2BANCNFSM4HJZ672Q>
.
--
Jon E. Froehlich <https://jonfroehlich.github.io/> (he/him
<https://www.mypronouns.org/he-him>) | @jonfroehlich
<https://twitter.com/jonfroehlich>
Associate Professor, Allen School of Computer Science & Engineering
Affiliate Faculty, Urban Design and Planning, College of Built Environments
Director, Makeability Lab <https://makeabilitylab.cs.washington.edu/> |
Associate Director, CREATE <http://create.uw.edu/>
University of Washington
Help make sidewalks more accessible: http://projectsidewalk.io
|
For sure. There should be a lower effort way to log that this was how their location was chosen. |
What if instead of dropping a pin, we displayed the road network we have on the map? You can see the previously audited streets on /labelMap, but what if we just included all streets and then let the user pick a street to audit? Since we'd already be making that selection for them after they picked a point anyway, this would make it more clear what they are choosing. Probably better than them thinking that they've chosen a specific point and instead got dropped at the end of the street. Plus we have the benefit of already knowing how to display the streets, and all we have to do is make them selectable! This could then be augmented in the future if someone wanted to choose a whole series of streets that they wanted to audit! That would be for a future PR. But choosing a set of streets to audit would not be totally incompatible with how our front-end is organized right now. It wouldn't require the monumental restructure that a fully open-world auditing experience would. |
I also think that "try a custom mission" might seem a little bit too flashy for what this is. Well, I guess I mean that a lot of people will think "ooo, custom mission!" and get there and realize that it's something that required local knowledge and they don't really care about the location they audit. The language should probably just be more specific about what they're doing. Something more like "Have a specific street you want to audit in <city name>?". Could probably use some polish. |
Yeah, I like that idea. So we would show the set of streets to the user, and as they hover maybe it would bold or something like that. Then, on a click it would select that whole street. I'll come up for a mock for that soon, I think that we might want to make some display changes from /labelMap, since without the labels the black looks quite harsh. I also agree with your point about the "Try a custom mission". How about "Choose your start location"? What do you think about the location of the link @misaugstad ? |
I like this too. And great ideas Maddie!
On Wed, Apr 14, 2021 at 9:35 AM mcdoerr ***@***.***> wrote:
Yeah, I like that idea. So we would show the set of streets to the user,
and as they hover maybe it would bold or something like that. Then, on a
click it would select that whole street. I'll come up for a mock for that
soon, I think that we might want to make some display changes from
/labelMap, since without the labels the black looks quite harsh.
I also agree with your point about the "Try a custom mission". How about
"Choose your start location"? What do you think about the location of the
link @misaugstad <https://github.com/misaugstad> ?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1702 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAML55MKHWHF3JDVYA3CFX3TIW73TANCNFSM4HJZ672Q>
.
--
Sent from phone
|
Alright, I coded up the entry point and here is a before/after: Changes made: added in link to the choose your location page, centered the text and added padding around the sides. I thought it looked a little strange before but if there is a good reason that it looked that way let me know. Would appreciate any feedback! |
Great, thanks! I might go with "or choose you start location"..? Idk, not sure I'm sold on that either. I like it though :) |
Yeah, I'm not sold on the wording either. I was thinking maybe like "Choose your start location instead"? |
Ooo wait how about this... What about moving the text below the OK button, centering the OK button, and then I think the "or choose your start location" would make more sense |
Oh yes that's a good idea. I'll move some things around and post a screenshot here! |
Closing via #3150 |
Some users will want to specifically audit the block that they live on (at least one user has emailed recently about this). Would be nice to drop into a particular location in the same way you can on Google Maps.
The text was updated successfully, but these errors were encountered: