12345678910111213 |
- this.initialize = function() {
- this.future( 0.3 ).render();
- }
- this.handleRender = function( img, iconSize, symbolCenter, symbolBounds ){
- if ( this.parent !== undefined ) {
- this.parent.handleRender( img, iconSize, symbolCenter, symbolBounds );
- }
- }
|