Set a pointRadius on the object style so nodes are visible. Fixes #2070.

This commit is contained in:
Tom Hughes 2009-07-16 14:32:42 +00:00
parent 7eaf671999
commit 7b07b8ccbf

View file

@ -14,7 +14,7 @@ var nonamekeys = {
}; };
OpenLayers._getScriptLocation = function () { 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 // the real rails root
return "/openlayers/"; return "/openlayers/";
} }
@ -116,7 +116,8 @@ function addObjectToMap(url, zoom, callback) {
strokeWidth: 3, strokeWidth: 3,
strokeOpacity: 0.5, strokeOpacity: 0.5,
fillOpacity: 0.2, fillOpacity: 0.2,
fillColor: "lightblue" fillColor: "lightblue",
pointRadius: 6
}, },
projection: new OpenLayers.Projection("EPSG:4326"), projection: new OpenLayers.Projection("EPSG:4326"),
displayInLayerSwitcher: false displayInLayerSwitcher: false
@ -145,7 +146,7 @@ function addObjectToMap(url, zoom, callback) {
callback(extent); callback(extent);
} }
}); });
map.addLayer(layer); map.addLayer(layer);
layer.loadGML(); layer.loadGML();
@ -165,7 +166,7 @@ function addBoxToMap(boxbounds) {
strokeColor: '#ee9900', strokeColor: '#ee9900',
fillOpacity: 0 fillOpacity: 0
}); });
vectors.addFeatures(box); vectors.addFeatures(box);
return box; return box;