7

我已经查看了一些关于使用 android map v2 的 3d 地图视图的链接和帖子,例如:

Google Maps API v2 中的 3D 折线(或任何路径)

http://android-developers.blogspot.in/2012/12/new-google-maps-android-api-now-part-of.html

http://googlegeodevelopers.blogspot.com.ar/2012/12/better-maps-in-your-android-apps.html

http://nutiteq.github.io/hellomap3d/

安卓3D地图库

我还查看了 Trulia、Expedia Hotels 和 FlightTrack 链接,他们做得很好,但不知何故我找不到方法来证明这一点

我什至通过此链接查看了全景视图: https ://code.google.com/p/panoramagl-android/wiki/UserGuide

但我仍然无法使用 android map v2 实现 3d 地图视图

可能我错过了什么

谁能给我一个简单的教程或示例,它将正确显示如何在 v2 的 3d 视图中显示地图,而不是 v3 或 webview

谢谢

4

1 回答 1

7

最后我找到了答案,地图 v2 里面有默认的 3d 地图,它只在纽约、加拿大等地启用。使用这个代码

它完美地工作并尝试倾斜视图,它可以通过将两根手指放在地图中并向下拖动两根手指来制作,魔法会发生希望它对你有用

          CameraPosition cameraPosition = new CameraPosition.Builder()
             .target() // Sets the center of the map to
               .zoom()                   // Sets the zoom
             .bearing() // Sets the orientation of the camera to east
             .tilt()    // Sets the tilt of the camera to 30 degrees
             .build();    // Creates a CameraPosition from the builder
         mapp.animateCamera(CameraUpdateFactory.newCameraPosition(
             cameraPosition));
于 2013-10-15T09:00:18.013 回答