aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Map/GoogleOL.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perllib/FixMyStreet/Map/GoogleOL.pm')
-rw-r--r--perllib/FixMyStreet/Map/GoogleOL.pm22
1 files changed, 22 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Map/GoogleOL.pm b/perllib/FixMyStreet/Map/GoogleOL.pm
new file mode 100644
index 000000000..64baf8d36
--- /dev/null
+++ b/perllib/FixMyStreet/Map/GoogleOL.pm
@@ -0,0 +1,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;