Add missing semicolon

This commit is contained in:
Frederic Junod
2016-06-09 15:32:58 +02:00
parent 08f8cd0f16
commit 4bf1f56405
33 changed files with 56 additions and 56 deletions
+1 -1
View File
@@ -155,7 +155,7 @@ map.on('click', function(evt) {
var stroke = new ol.style.Stroke({
color: 'rgba(255,0,0,0.9)',
width: 1
})
});
var style = new ol.style.Style({
stroke: stroke,
image: new ol.style.Circle({
+1 -1
View File
@@ -21,7 +21,7 @@ var style = new ol.style.Style({
fill: fill,
stroke: stroke
})
})
});
vectorContext.setStyle(style);
vectorContext.drawGeometry(new ol.geom.LineString([[10, 10], [90, 90]]));