aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Map/GoogleOL.pm
blob: 64baf8d36ca683c4c3bc673e04260355bce1ab39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl
#
# FixMyStreet:Map::GoogleOL
# Google maps on FixMyStreet, using OpenLayers.
#
# Copyright (c) 2013 UK Citizens Online Democracy. All rights reserved.
# Email: matthew@mysociety.org; WWW: http://www.mysociety.org/

package FixMyStreet::Map::GoogleOL;
use parent 'FixMyStreet::Map::OSM';

use strict;

sub map_type {
    return '""';
}

sub map_template {
    return 'google-ol';
}

1;