From 8c9732c9da6d95eb91248e630318b25540686a85 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Sun, 10 Nov 2013 16:34:14 +0100 Subject: [PATCH] Add missing style parameter to GeoJSON example --- examples/geojson.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/geojson.js b/examples/geojson.js index 6c44590ffe..e6599e08f7 100644 --- a/examples/geojson.js +++ b/examples/geojson.js @@ -10,7 +10,7 @@ goog.require('ol.style.DefaultStyleFunction'); goog.require('ol.symbol'); -var image = ol.symbol.renderCircle(5, null, {color: 'red'}); +var image = ol.symbol.renderCircle(5, null, {color: 'red', width: 1}); var styleFunction = function(feature) { switch (feature.getGeometry().getType()) { case ol.geom.GeometryType.POINT: