如何将位置设置为自定义图块叠加层

时间:2013-10-26 13:35:57

标签: android overlay google-maps-android-api-2

我正在尝试将图像叠加层添加到Google地图中,就像在Google IO 2013应用中一样。
地图应该如下所示。
enter image description here

我有两个问题  1.如何为google maps安装自定义tileproviver  2.如何设置磁贴提供程序的位置

1 个答案:

答案 0 :(得分:0)

@Override
    public void onLocationChanged(Location location) {
        LatLng latLng = new LatLng(location.getLatitude(), location.getLongitude());

        googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng, 15));
        googleMap.addMarker(new MarkerOptions().position(latLng).title("YOUR TITLE");
        locationManager.removeUpdates(this);
    }

尝试“.addMarker”