From 7b07b8ccbf70705f3c6e382a7233d10acaf75cd5 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 16 Jul 2009 14:32:42 +0000 Subject: [PATCH] Set a pointRadius on the object style so nodes are visible. Fixes #2070. --- public/javascripts/map.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/public/javascripts/map.js b/public/javascripts/map.js index 9773ab348..f79e3ae31 100644 --- a/public/javascripts/map.js +++ b/public/javascripts/map.js @@ -14,7 +14,7 @@ var nonamekeys = { }; OpenLayers._getScriptLocation = function () { - // Should really have this file as an erb, so that this can return + // Should really have this file as an erb, so that this can return // the real rails root return "/openlayers/"; } @@ -116,7 +116,8 @@ function addObjectToMap(url, zoom, callback) { strokeWidth: 3, strokeOpacity: 0.5, fillOpacity: 0.2, - fillColor: "lightblue" + fillColor: "lightblue", + pointRadius: 6 }, projection: new OpenLayers.Projection("EPSG:4326"), displayInLayerSwitcher: false @@ -145,7 +146,7 @@ function addObjectToMap(url, zoom, callback) { callback(extent); } }); - + map.addLayer(layer); layer.loadGML(); @@ -165,7 +166,7 @@ function addBoxToMap(boxbounds) { strokeColor: '#ee9900', fillOpacity: 0 }); - + vectors.addFeatures(box); return box; -- 2.43.2