From: Tom Hughes Date: Wed, 8 Apr 2009 23:52:39 +0000 (+0000) Subject: Make the box outline the same colour as the ways and points drawn X-Git-Tag: live~7557^2~32 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/47350833fcbdd9483fa2cbf1b465ec8376c8e5f5?hp=1262b376ef56da9f5b8ec6cfd708620069f0ff87 Make the box outline the same colour as the ways and points drawn in the data browser maps. --- 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, });