美文网首页
Leaflet核心类:Class.js

Leaflet核心类:Class.js

作者: 1e6c2b3901b0 | 来源:发表于2019-01-17 12:57 被阅读0次

    没有定义属性字段,定义了一些方法。

    • extend(props: Object): Function
      扩展当前类,包含给定的属性,并返回一个js函数作为类的构造函数
    • include(properties: Object): this
      Includes a mixin into the current class,内部调用了:
      Util.extend(this.prototype, props); return this;
    • mergeOptions(options: Object): this
      选项融合
    • addInitHook(fn: Function): this
    • checkDeprecatedMixinEvents

    相关文章

      网友评论

          本文标题:Leaflet核心类:Class.js

          本文链接:https://www.haomeiwen.com/subject/zsqidqtx.html