-
-
Notifications
You must be signed in to change notification settings - Fork 242
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
[Bexley] Add customised map pins #5275
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #5275 +/- ##
=======================================
Coverage 82.40% 82.40%
=======================================
Files 415 415
Lines 32833 32843 +10
Branches 5265 5270 +5
=======================================
+ Hits 27055 27065 +10
+ Misses 4222 4217 -5
- Partials 1556 1561 +5 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure what package was used to change the colours, but it's made them very jaggedy in doing so - compare e.g. https://github.com/mysociety/fixmystreet/blob/dc1ba7b689138aa5a6efa0755d61fe0eeeda244d/web/cobrands/bexley/images/pin-aqua-big.png vs https://github.com/mysociety/fixmystreet/blob/master/web/i/pin-yellow-big.png
So that needs sorting somehow, I'm afraid
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, that looks better - one bug in the logic though!
return 'orange' if $p->state eq 'action_scheduled'; | ||
return 'green' if $p->is_fixed; | ||
return 'spring' if $p->is_closed; | ||
return 'grape' if $p->state eq 'not_council_responsibility'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line will never be reached because it'll match on the is_closed line above.
b5d7376
to
22eb7c8
Compare
This puts them all under web/i/pins, one directory per 'colour', path_to_pin_icons is only used for sourcing shadow/spot files.
22eb7c8
to
c2ac201
Compare
c2ac201
to
74b5587
Compare
https://mysocietysupport.freshdesk.com/a/tickets/4521 https://github.com/mysociety/societyworks/issues/4626
[skip changelog]