diff options
author | Matthew Somerville <matthew@mysociety.org> | 2020-07-16 20:35:03 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2020-07-16 20:35:03 +0100 |
commit | 4dfbdeb587859855180e7fb058278f61d7be7fb2 (patch) | |
tree | 927267809a47754a7271b0833a5fdb2ac185b60e /web/js/map-OpenStreetMap.js | |
parent | 60af4a782721257e2647cc37cff8234779361e43 (diff) | |
parent | d55461e6d05ab0c1b398f756a687107a5ce6d49e (diff) |
Merge branch 'osm-aerial-tiles'
Diffstat (limited to 'web/js/map-OpenStreetMap.js')
-rw-r--r-- | web/js/map-OpenStreetMap.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/web/js/map-OpenStreetMap.js b/web/js/map-OpenStreetMap.js index 9ed3a2ee3..bd3497343 100644 --- a/web/js/map-OpenStreetMap.js +++ b/web/js/map-OpenStreetMap.js @@ -7,6 +7,13 @@ fixmystreet.maps.config = function() { new OpenLayers.Control.PermalinkFMS('map'), new OpenLayers.Control.PanZoomFMS({id: 'fms_pan_zoom' }) ]; + + if (OpenLayers.Layer.BingAerial) { + fixmystreet.layer_options = [ + { map_type: fixmystreet.map_type }, + { map_type: OpenLayers.Layer.BingAerial } + ]; + } }; // http://www.openstreetmap.org/openlayers/OpenStreetMap.js (added maxResolution) |