mapLayers = {
let mapLayers = [];
mapLayers["countries"] = drawMapLayer(map,"countries",world.features,world.idField);
mapLayers["usstates"] = drawMapLayer(map,"usstates",usstates.features,"properties.NAME");
mapLayers["cville_neighborhoods"] = drawMapLayer(map,"cville_neighborhoods",cville_neighborhoods.features,"properties.NAME");
return mapLayers;
}