从对象类中获取样式值的方法?

时间:2015-09-30 08:40:02

标签: javascript jquery

  1. 我创建了一个类
  2. 为该类创建了一个对象
  3. 需要创建方法以从配置中生成图例样式。
  4. 这是我的代码示例,

    ntt = {};
    ntt.pgp = ntt.pgp || {};
    ntt.pgp.StyleManager = function(opts){
        this.styleConfig = {
                site: {
                    legendText: [{
                    strokeWidth: 2,
                    storkeColor: 'red',
                    fillColor: 'rgba(0, 0, 255, 0.1)',
                    displayText: 'Polygon'
                }]
            }
        };
    };
    
    ntt.pgp.StyleManager.prototype.createLegend = function(layerId) {
    // how to get the the style from the above object class.
    

    我是JavaScript的新手。感谢

0 个答案:

没有答案