Rename symbol to shape

This commit is contained in:
Éric Lemoine
2013-11-11 20:27:24 +01:00
committed by Tom Payne
parent ac2b650c96
commit 60ef4f214e
7 changed files with 12 additions and 12 deletions

View File

@@ -5,8 +5,8 @@ goog.require('ol.RendererHint');
goog.require('ol.View2D');
goog.require('ol.geom.Point');
goog.require('ol.layer.Vector');
goog.require('ol.shape');
goog.require('ol.source.Vector');
goog.require('ol.symbol');
var count = 20000;
@@ -23,11 +23,11 @@ for (var i = 0; i < count; ++i) {
var styles = {
'10': {
image: ol.symbol.renderCircle(
image: ol.shape.renderCircle(
5, {color: '#666666'}, {color: '#bada55', width: 1})
},
'20': {
image: ol.symbol.renderCircle(
image: ol.shape.renderCircle(
10, {color: '#666666'}, {color: '#bada55', width: 1})
}
};