Skip to content
Snippets Groups Projects
Commit 57a3e9cc authored by Clark's avatar Clark
Browse files

remove unnecessary console logs

parent fa221a29
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,6 @@ let css = {
* @component
*/
export default function GeoStacApp(props) {
console.log(props);
const [targetPlanet, setTargetPlanet] = React.useState("Mars");
const [footprintData, setFootprintData] = React.useState([]);
......
......@@ -10,7 +10,6 @@ import { getItemCollection,
setCurrentPage,
setFeatures,
setNumberReturned } from "./ApiJsonCollection";
import { MY_JSON_MAPS } from "./layers";
/**
......@@ -227,7 +226,6 @@ export default L.Map.AstroMap = L.Map.extend({
this._radii["a"] = parseFloat(currentTarget["aaxisradius"] * 1000);
this._radii["c"] = parseFloat(currentTarget["caxisradius"] * 1000);
let jsonLayers = currentTarget.layers;
console.log(jsonLayers['base']);
for (let key of Object.keys(jsonLayers)){
layers[key] =jsonLayers[key].filter(function(currentLayer){
return currentLayer["projection"].toLowerCase() == projection.toLowerCase();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment