如何在地图上的标记片段中设置图像

时间:2019-04-14 11:27:07

标签: android

我正在尝试做一个简单的程序,在地图上显示标记。在我的标记上,我已经设置好图像,我的代码是这样:

private GoogleMap Mymarker;
    @Override
    public void onMapReady(GoogleMap googleMap) {
        Mymarker = googleMap;
        LatLng markerPosition = new LatLng(Lat, Long);
        BitmapDrawable dr = (BitmapDrawable) getResources().getDrawable(R.drawable.my_image);
        Bitmap bitmapD = Bitmap.createScaledBitmap(dr.getBitmap(), 200, 200, false);
        Mymarker.addMarker(new MarkerOptions().snippet("My Snippet").icon(BitmapDescriptorFactory.fromBitmap(bitmapD)).position(markerPosition).title("Marker"));
        Mymarker.moveCamera(CameraUpdateFactory.newLatLng(markerPosition));
    }

现在,我想在标记的片段中进行描述,该片段显示了另一幅图像。这是可能的?我该怎么做?

0 个答案:

没有答案