From 47350833fcbdd9483fa2cbf1b465ec8376c8e5f5 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 8 Apr 2009 23:52:39 +0000 Subject: [PATCH 1/1] Make the box outline the same colour as the ways and points drawn in the data browser maps. --- public/javascripts/map.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/javascripts/map.js b/public/javascripts/map.js index 71edee56c..3cfa2f9a1 100644 --- a/public/javascripts/map.js +++ b/public/javascripts/map.js @@ -121,8 +121,8 @@ function addMarkerToMap(position, icon, description) { function addBoxToMap(boxbounds) { var geometry = boxbounds.toGeometry().transform(epsg4326, map.getProjectionObject()); var box = new OpenLayers.Feature.Vector(geometry, {}, { - strokeWidth: 3, - strokeColor: '#0000ff', + strokeWidth: 2, + strokeColor: '#ee9900', fillOpacity: 0, }); -- 2.43.2