blob: fc8726b34c96c7cd3981b417cbef08abfdc1a7fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# FixMyStreet:Map::Bromley
# Bromley have slightly different tiles, with trees etc.
#
# Copyright (c) 2012 UK Citizens Online Democracy. All rights reserved.
# Email: matthew@mysociety.org; WWW: http://www.mysociety.org/
package FixMyStreet::Map::Bromley;
use base 'FixMyStreet::Map::FMS';
use strict;
sub map_type {
return '[ [ "", "a-" ], "https://{S}fix.bromley.gov.uk/tilma" ]';
}
sub map_tile_base {
'-', "https://%sfix.bromley.gov.uk/tilma/%d/%d/%d.png";
}
1;
|