如何在Android应用程序中获取谷歌地图的混合视图

时间:2011-07-08 12:52:01

标签: android google-maps-api-3 android-maps

我可以在谷歌地图上看到差异,但在Android MapActivity上 我很难找到差异。 对于'map',我调用:mapView.setSatellite(false); 对于'卫星'我叫:mapView.setSatellite(true); 但对于混合视图......我试过玩 mapView.setStreetView(真);但这似乎并没有影响任何事情 无论哪种方式。 有什么想法吗?

2 个答案:

答案 0 :(得分:2)

有很多帖子可以帮助您实施它:

Services

Obtaining User Location

祝你好运!

答案 1 :(得分:1)

创建一个扩展Service

的类
public class myService extends Service

覆盖

public void onStart(Intent intent, int startId) {

在您的活动中

if(!myService.isInstanceCreated())
startService(new Intent(youractivityclass.this, myService.class));