I seem to be having quite the issue adding a layer control menu to my page. I thought I had the code correct but every time I try to add it, it doesn't show. What am I doing wrong?
L.geoJSON(cities).addTo(map);
```code```
var baseMaps = {
"States": statesData
};
var overlayMaps = {
"cities": cities
};
L.control.layers(baseMaps, overlayMaps).addTo(map);