diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-02-22 14:07:05 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-02-22 14:07:05 +0000 |
commit | 1ef100973c6f371768f36a16793ff5ab9eb9e362 (patch) | |
tree | ddbf86de32708d4dcccf4999d4e7bfec58c1a23f /perllib/FixMyStreet/App/Controller/Report.pm | |
parent | 3233dd7316acd6eb5be8b5102ac9c0077565a382 (diff) |
Separate colour and size using StyleMap and Rules, to enable differently sized map pins (fixes #228).
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Report.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Report.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Report.pm b/perllib/FixMyStreet/App/Controller/Report.pm index f94e6c8ec..59e3a4410 100644 --- a/perllib/FixMyStreet/App/Controller/Report.pm +++ b/perllib/FixMyStreet/App/Controller/Report.pm @@ -127,7 +127,8 @@ sub generate_map_tags : Private { ? [ { latitude => $problem->latitude, longitude => $problem->longitude, - colour => 'big', + colour => 'yellow', + type => 'big', } ] : [], ); |