aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Cobrand/Southampton.pm
blob: b57091beff0438ef1a7516a75a54827330f2fa5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package FixMyStreet::Cobrand::Southampton;
use base 'FixMyStreet::Cobrand::UKCouncils';

use strict;
use warnings;

sub council_id { return 2567; }
sub council_area { return 'Southampton'; }
sub council_name { return 'Southampton City Council'; }
sub council_url { return 'southampton'; }

sub disambiguate_location {
    my $self = shift;
    return {
        %{ $self->SUPER::disambiguate_location() },
        town   => 'Southampton',
        centre => '50.913822,-1.400493',
        span   => '0.084628,0.15701',
        bounds => [ '50.871508,-1.478998', '50.956136,-1.321988' ],
    };
}

1;