aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Cobrand/Southampton.pm
blob: 4e068a8c34ce3c312a92030998480971663501b5 (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
25
26
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 ],
    };
}

sub send_questionnaires { return 0; }

1;