Vladimir Kroz
Vladimir Kroz

Reputation: 5367

How to reposition built-in zoom controls in MapView?

I need to place built-in zoom controls of MapView into position different from the default position. While it's easy to do using getZoomControls() method, this method is deprecated in recent API versions.

Does anyone has idea how to do this without calling getZoomControls()?

Upvotes: 14

Views: 5908

Answers (2)

ludwigm
ludwigm

Reputation: 3383

I have an answer to this. I managed to reposition it with this code in the bottom left corner instead of in the middle

FrameLayout.LayoutParams zoomParams = new FrameLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
ZoomControls controls = (ZoomControls) getZoomButtonsController().getZoomControls();
controls.setGravity(Gravity.LEFT);
controls.setLayoutParams(zoomParams);

Upvotes: 11

taxeeta
taxeeta

Reputation: 1198

This thing does not work unless you sequence your calls correctly. This worked for me.

    map.setBuiltInZoomControls(true);
    FrameLayout.LayoutParams zoomParams = new FrameLayout.LayoutParams(
            LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
    ZoomControls controlls = (ZoomControls) map.getZoomButtonsController().getZoomControls();
    controlls.setGravity(Gravity.TOP);
    controlls.setLayoutParams(zoomParams);
    map.displayZoomControls(true);
    map.getController().setZoom(12);

Upvote for @ludwigm, the only answer that worked for me. Thanks.

Upvotes: 1

Related Questions