blob: 5bb7df3b6cf3cce329ee7f0f62611ecd0783f52b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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 {
return {
town => 'Southampton',
centre => '50.913822,-1.400493',
span => '0.084628,0.15701',
bounds => [ '50.871508,-1.478998', '50.956136,-1.321988' ],
};
}
1;
|