diff options
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Lincolnshire.pm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Lincolnshire.pm b/perllib/FixMyStreet/Cobrand/Lincolnshire.pm index d86afd77b..833fbff12 100644 --- a/perllib/FixMyStreet/Cobrand/Lincolnshire.pm +++ b/perllib/FixMyStreet/Cobrand/Lincolnshire.pm @@ -17,6 +17,23 @@ sub is_two_tier { 1 } sub enable_category_groups { 1 } +sub example_places { + return ( 'LN1 1YL', 'Orchard Street, Lincoln' ); +} + +sub disambiguate_location { + my $self = shift; + my $string = shift; + return { + %{ $self->SUPER::disambiguate_location() }, + town => 'Lincolnshire', + centre => '53.1128371079972,-0.237920757894981', + span => '0.976148231905086,1.17860658530345', + bounds => [ 52.6402179235688, -0.820651304784901, 53.6163661554738, 0.357955280518546 ], + }; +} + + sub open311_config { my ($self, $row, $h, $params) = @_; |