Modify

Opened 8 years ago

Closed 8 years ago

#13661 closed enhancement (worksforme)

Ability to highlight by user id

Reported by: baditaflorin Owned by: team
Priority: normal Milestone:
Component: Core mappaint Version:
Keywords: Cc:

Description

In the actual mapcss implementation i see that i cannot edit just the edits made by one user, or show in different colours based on who edited the way,node, etc

This would be useful in situations like the one that i have, were i am adding lane information to an area, and i want to see the ways that i had edited in a visual way, without having to search and highlight my edits.

Attachments (0)

Change History (3)

comment:1 by skyper, 8 years ago

ATM you could use filter to do this but it would be nice if I could give a search/filter one specific colour.

comment:2 by Klumbumbus, 8 years ago

This can currently be achieved with the JOSM_search mapcss function, e.g.:

node[JOSM_search("user:baditaflorin")]::my_edits {
    symbol-fill-color: green;
    symbol-shape: circle;
    symbol-size: 22;
    z-index: -1;
}
way[JOSM_search("user:baditaflorin")]::my_edits {
    color: green;
    width: 10;
    z-index: -1;
}

comment:3 by Don-vip, 8 years ago

Component: CoreCore mappaint
Resolution: worksforme
Status: newclosed

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain team.
as The resolution will be set.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.