Io cerco di usare GeoJSON a macchina ma il compilatore genera un errore per questo due variabili: Generic type 'Feature<T>' requires 1 type argument(s)
Cosa significa "Tipo generico" Caratteristica <T> "richiede 1 tipo di argomento" in Typescript?
const pos = <GeoJSON.Feature>{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [0, 1]
}
};
const oldPos = <GeoJSON.Feature>{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [2, 4]
}
};
Cos'è questo vorrebbe dire?
Prova> –