Merge branch 'vector' of github.com:openlayers/ol3 into vector

Conflicts:
	src/ol/style/shape.js
This commit is contained in:
Tim Schaub
2013-03-06 02:28:33 +01:00
5 changed files with 308 additions and 18 deletions

View File

@@ -43,11 +43,11 @@ ol.style.ShapeLiteral = function(config) {
/** @type {number} */
this.size = config.size;
/** @type {string|undefined} */
this.fillStyle = config.fillStyle;
if (goog.isDef(config.fillStyle)) {
goog.asserts.assertString(config.fillStyle, 'fillStyle must be a string');
}
/** @type {string|undefined} */
this.fillStyle = config.fillStyle;
/** @type {string|undefined} */
this.strokeStyle = config.strokeStyle;