aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Map/GoogleOL.pm
diff options
context:
space:
mode:
authorChris Mytton <self@hecticjeff.net>2013-10-16 14:09:32 +0100
committerChris Mytton <self@hecticjeff.net>2013-10-16 14:09:32 +0100
commit762c106ec81a4923d35b1eb4c60d762e60a495bf (patch)
tree4b7244a7e1fbfd53a7ef950a02072c162999af71 /perllib/FixMyStreet/Map/GoogleOL.pm
parent0efb806e7dbfc6681230041751ed49552ec3ba5b (diff)
parent6daf4d511f5a2fd908d53ee974e04be4bf3ee722 (diff)
Merge branch 'master' into oxfordshire-usability-recommendations
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;