﻿// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Called when a mappable feature link is clicked...
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function ZoomToAndSelectSingleFeature(featureName, featureKeys) {
    // Zoom to the feature...
    ZoomToFeaturesSynchronously(featureName, featureKeys)

    // Select the feature...
    SelectSingleFeature(featureName, featureKeys);

}





 




