
    function LightMarker(city, cntDirectMail, cntEmail, distance, eeoAsian, eeoBlack, eeoHispanic, eeoOther, eeoPopulation, eeoNonWhite, lat, lng, state, ZIP, ZIP3, ZIPBoundary, centerMarker) {
      this.centerMarker_ = centerMarker;
      this.city_ = city;
      this.cntDirectMail_ = parseInt(cntDirectMail);
      this.cntEmail_ = parseInt(cntEmail);
      this.distance_ = parseInt(distance);
      this.eeoAsian_ = parseInt(eeoAsian);
      this.eeoBlack_ = parseInt(eeoBlack);
      this.eeoHispanic_ = parseInt(eeoHispanic);
      this.eeoNonWhite_ = parseInt(eeoNonWhite);
      this.eeoOther_ = parseInt(eeoOther);
      this.eeoPopulation_ = parseInt(eeoPopulation);
      this.lat_ = Number(lat);
      this.lng_ = Number(lng);
      this.state_ = state;
      this.ZIP_ = ZIP;
      this.ZIP3_ = ZIP3;
      this.ZIPBoundary_ = ZIPBoundary;
    }

