aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Map/BathNES.pm
blob: 9c9c3c11d239b27e1d79207fc03ad2b930169ee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# FixMyStreet:Map::BathNES
# More JavaScript, for street assets

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

use strict;

sub map_javascript { [
    '/vendor/OpenLayers/OpenLayers.bathnes.js',
    '/vendor/OpenLayers.Projection.OrdnanceSurvey.js',
    '/js/map-OpenLayers.js',
    '/js/map-OpenStreetMap.js',
    '/cobrands/fixmystreet/assets.js',
    '/cobrands/bathnes/js.js',
] }

1;