﻿//Represents a feature with a number of attributes
GbgMap.API.Feature = function () {

    this.featureId = null;
    this.datasetId = "";
    this.name = "";
    this.adress = "";
    this.x = "";
    this.y = "";
    this.WKT = "";
    this.objectType = "";
    this.ingress = "";
    this.header = "";
    this.body = "";
    this.link = "";
};
