diff options
Diffstat (limited to 'perllib')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/FiksGataMi.pm | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/perllib/FixMyStreet/Cobrand/FiksGataMi.pm b/perllib/FixMyStreet/Cobrand/FiksGataMi.pm index 461018639..822a0c43b 100644 --- a/perllib/FixMyStreet/Cobrand/FiksGataMi.pm +++ b/perllib/FixMyStreet/Cobrand/FiksGataMi.pm @@ -8,11 +8,6 @@ use Carp; use mySociety::MaPit; use FixMyStreet::Geocode::OSM; -sub path_to_web_templates { - my $self = shift; - return [ FixMyStreet->path_to( 'templates/web', $self->moniker )->stringify ]; -} - sub country { return 'NO'; } @@ -41,17 +36,6 @@ sub admin_base_url { return 'http://www.fiksgatami.no/admin'; } -# If lat/lon are present in the URL, OpenLayers will use that to centre the map. -# Need to specify a zoom to stop it defaulting to null/0. -sub uri { - my ( $self, $uri ) = @_; - - $uri->query_param( zoom => 3 ) - if $uri->query_param('lat') && !$uri->query_param('zoom'); - - return $uri; -} - sub geocode_postcode { my ( $self, $s ) = @_; |