Currently working on a Three.js App using the React Template. The main idea is to have a 3D model that represents Planet Earth within the app, along with a space station model. I want to be able to rotate the station around the world by inputting specific coordinates every second. My query is this:
How can I position the space station above London, for instance, if I have the following coordinates:
long: 45.926013877299
and lat: 46.524648101056
(random)
This is how I am currently loading the object:
const loader = new GLTFLoader();
loader.load("path/to/model", function (gltf) {
scene.add(gltf.scene);
});