Google Sky Map 是用什么语言编写的?
What language is Google Sky Map coded in?
我想为 Ubuntu 创建一个 Google Sky Map-kinda 应用程序。
我打算使用 WebGL 和 Ubuntu Touch IDE,但我真的不知道 Google Sky Map 使用什么...
一直没找到,所以有几个问题:
Google Sky Map 是用什么语言编码的?
是否使用 OpenGL?
应用程序如何在人的坐标和应用程序中可见的坐标之间创建 link?
Google Sky has a front-end written in Javascript and seems to work like Google Maps with tiled images. I'm not sure if that's the one you mean. There is also Google Sky Map, an Android app, which is written in Java. It is open-source, and you can look at the code here。
它看起来确实使用了 OpenGL,我在代码中看到了很多 import android.opengl
和 import javax.microedition.khronos
。
此应用使用 android.location 将用户的位置与其数据相匹配。查看源代码中的文件 app/src/com/google/android/stardroid/control/LocationController.java
,了解有关 Sky Map 如何执行此操作的更多详细信息。
我想为 Ubuntu 创建一个 Google Sky Map-kinda 应用程序。
我打算使用 WebGL 和 Ubuntu Touch IDE,但我真的不知道 Google Sky Map 使用什么...
一直没找到,所以有几个问题:
Google Sky Map 是用什么语言编码的?
是否使用 OpenGL?
应用程序如何在人的坐标和应用程序中可见的坐标之间创建 link?
Google Sky has a front-end written in Javascript and seems to work like Google Maps with tiled images. I'm not sure if that's the one you mean. There is also Google Sky Map, an Android app, which is written in Java. It is open-source, and you can look at the code here。
它看起来确实使用了 OpenGL,我在代码中看到了很多 import android.opengl
和 import javax.microedition.khronos
。
此应用使用 android.location 将用户的位置与其数据相匹配。查看源代码中的文件 app/src/com/google/android/stardroid/control/LocationController.java
,了解有关 Sky Map 如何执行此操作的更多详细信息。