﻿var Dealer = function(x, y, zoom) {
    this.id = -1;
    this.categoryId = -1;
    
    this.place = {
        x: x,
        y: y,
        zoom: zoom
    }

    this.name = '';
    this.address = '';
    this.image = '';
    this.icon = '';

    this._marker = null;
}

