Thanks it was simple, and something that my brain should have given up sooner.
if(this.Maps[this.options.mapName] == undefined){
this.Maps[this.options.mapName] = new
google.maps.Map(this.container,this.options);
};
this.Maps[this.options.mapName].setCenter(loc,this.options.zoom);
Is the path I took for those that may wonder .
