aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Map/OSM/StreetView.pm
blob: 141c2e3284906692eacbbac85a86486bc6fa7ec8 (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
27
28
29
30
#!/usr/bin/perl
#
# FixMyStreet:Map::OSM::StreetView
# OSM StreetView maps on FixMyStreet.
#
# Copyright (c) 2010 UK Citizens Online Democracy. All rights reserved.
# Email: matthew@mysociety.org; WWW: http://www.mysociety.org/

package FixMyStreet::Map::OSM::StreetView;
use base 'FixMyStreet::Map::OSM';

use strict;

sub map_type {
    return '""';
}

sub map_template {
    return 'osm-streetview';
}

sub base_tile_url {
    return 'os.openstreetmap.org/sv';
}

sub copyright {
    return _('Map contains Ordnance Survey data © Crown copyright and database right 2010.');
}

1;