﻿// JScript File

var marker_list = [];


function evictMarkers() {

    // clear all markers

      for(var i=0; i<marker_list.length; i++){
        marker_list[i].setMap(null);
        marker_list[i] = null;
      } 
      


    // reset the eviction array 
    marker_list = [];
}
