aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/javascripts
diff options
context:
space:
mode:
authorThomas Haddad2017-01-23 11:03:27 +0100
committerThomas Haddad2017-01-23 11:04:14 +0100
commit89bcf2d753b4aa9eeff3f17ae6409d9d65a40f18 (patch)
tree56aaa0ddfcf95ccb8dc0dc676c36589f3123087d /app/assets/javascripts
parent80692c8d317e700c9b0a93e0abcf070f547fae8e (diff)
downloadchouette-core-89bcf2d753b4aa9eeff3f17ae6409d9d65a40f18.tar.bz2
Refs #2404: add marker styles
Signed-off-by: Thomas Shawarma Haddad <thomas.haddad@af83.com> Signed-off-by: Jean-Paul Lescouzeres <jean-paul.lescouzeres@af83.com>
Diffstat (limited to 'app/assets/javascripts')
-rw-r--r--app/assets/javascripts/es6_browserified/itineraries/components/OlMap.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/assets/javascripts/es6_browserified/itineraries/components/OlMap.js b/app/assets/javascripts/es6_browserified/itineraries/components/OlMap.js
index ad18b514d..d9f6eb909 100644
--- a/app/assets/javascripts/es6_browserified/itineraries/components/OlMap.js
+++ b/app/assets/javascripts/es6_browserified/itineraries/components/OlMap.js
@@ -43,8 +43,9 @@ class OlMap extends Component{
style: new ol.style.Style({
image: new ol.style.Circle(({
radius: 4,
- fill: new ol.style.Fill({
- color: '#000000'
+ stroke: new ol.style.Stroke({
+ color: '#000000',
+ width: 2
})
}))
})