﻿//Javascript CustomMarker Class

function CustomMarker(color, href, html, xPos, yPos)
{
    this._color = color;
    this._href = href;
    this._html = html;
    this._xPos = xPos;
    this._yPos = yPos;
}

CustomMarker.prototype._color;
CustomMarker.prototype._href;
CustomMarker.prototype._html;
CustomMarker.prototype._xPos;
CustomMarker.prototype._yPos;

CustomMarker.prototype.getColor = function() {
    return this._color;
}


CustomMarker.prototype.getHref = function() {
    return this._href;
}

CustomMarker.prototype.getHtml = function() {
    return this._html;
}

CustomMarker.prototype.getXPos = function() {
    return this._xPos;
}

CustomMarker.prototype.getYPos = function() {
    return this._yPos;
}


