3d使用机器人地图v2的地图视图

时间:2013-08-19 14:13:47

标签: android google-maps 3d

我已经使用android map v2检查了几个关于3d地图视图的链接和帖子,如:

3D Polyline (or any path) in Google Maps API v2

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 maps library for android

我还检查了Trulia,Expedia Hotels和FlightTrack链接他们做得很棒但不知何故我找不到显示方式

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

但我仍然无法使用android map v2

实现3d地图视图

可能是我错过了什么

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

感谢

1 个答案:

答案 0 :(得分:7)

最后我找到了它的答案,地图v2中有默认的三维地图,它只在newyork,cannada等中启用..使用此代码

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

          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));