From af6edadebe2a76d9666c8ff04b6fca2e71bd1424 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Tue, 17 Sep 2013 16:37:32 +0100 Subject: [PATCH] Update example with more distinct colors and no social links Conflicts: examples/modify-features.html --- examples/modify-features.html | 1 - examples/modify-features.js | 20 +++++++++++++------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/examples/modify-features.html b/examples/modify-features.html index 26a5a698e0..9723c84293 100644 --- a/examples/modify-features.html +++ b/examples/modify-features.html @@ -44,7 +44,6 @@ - diff --git a/examples/modify-features.js b/examples/modify-features.js index 7858f53f00..a79fd56d0a 100644 --- a/examples/modify-features.js +++ b/examples/modify-features.js @@ -32,11 +32,11 @@ var vector = new ol.layer.Vector({ symbolizers: [ new ol.style.Fill({ color: '#ffffff', - opacity: 0.5 + opacity: 0.2 }), new ol.style.Stroke({ - color: '#6666ff', - width: 0.5 + color: '#0033ff', + width: 2 }) ] }), @@ -44,7 +44,10 @@ var vector = new ol.layer.Vector({ filter: 'renderIntent("temporary")', symbolizers: [ new ol.style.Shape({ - fill: new ol.style.Fill({color: '#bada55'}), + fill: new ol.style.Fill({ + color: '#0033ff', + opacity: 1 + }), size: 16 }) ] @@ -53,7 +56,10 @@ var vector = new ol.layer.Vector({ filter: 'renderIntent("future")', symbolizers: [ new ol.style.Shape({ - fill: new ol.style.Fill({color: '#013'}), + fill: new ol.style.Fill({ + color: '#00ff33', + opacity: 1 + }), size: 16 }) ] @@ -62,10 +68,10 @@ var vector = new ol.layer.Vector({ symbolizers: [ new ol.style.Fill({ color: '#ffffff', - opacity: 0.25 + opacity: 0.1 }), new ol.style.Stroke({ - color: '#6666ff' + color: '#ffcc33' }) ] })