maptoolkit
Version:
Utilidades para trabajar con el mapa de google web.
22 lines • 815 B
JavaScript
import TsEventEmitter from 'ts-eventemitter';
var MtEventSource = (function () {
function MtEventSource() {
this.eventDispatcher = TsEventEmitter.create();
}
MtEventSource.prototype.event = function (name) {
return this.eventDispatcher.event(name);
};
MtEventSource.prototype.removeAllListeners = function () {
this.eventDispatcher.removeAllListeners();
};
MtEventSource.prototype.setMaxListeners = function (n) {
this.eventDispatcher.setMaxListeners(n);
};
return MtEventSource;
}());
export { MtEventSource };
MtEventSource.EVT_MAP_IDLE = "onMapIdle";
MtEventSource.EVT_MAP_CLICK = "onMapClick";
MtEventSource.EVT_MAP_ZOOM_CHANGED = "onZoomChanged";
MtEventSource.EVT_MAP_MARKER_CLICK = "onMarkerClick";
//# sourceMappingURL=mteventsource.js.map