﻿// ############################################################
// FeatureInfo Object
// ############################################################
function FeatureInfo() {
    var Type;
    var CentroidX;
    var CentroidY;
    var SelectionPointX;
    var SelectionPointY;
    var ZoomToScale;
    var LayerName;
}

// ############################################################
// Property Object
// ############################################################
function Property(name, value) {
    this.name = name;
    this.value = value;
}
