Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can i customize the position of the builtin zoom controls in a GoogleMap V2 ?

There are a lot of questions related to this topic for the Version 1 of Google Maps library.

Placing Zoom Controls in a MapView

How to reposition built-in zoom controls in MapView?

How to layout zoom Control with setBuiltInZoomControls(true)?

However, i wasn't able to find any questions in relation to the V2 of the library.

In the V2, there's no method

(LinearLayout) mapView.getZoomControls();

all the previously mentioned questions becomes obsolete.

Thanks in advance

share|improve this question

2 Answers

up vote 4 down vote accepted

AFAIK, there is no way to move the standard zoom controls. However, you could hide them and have your own zoom buttons wherever you want, though you will then be responsible for adjusting the zoom of the map based upon those button clicks.

share|improve this answer
Yeah, i was afraid somebody would say that. I had considered it as a second option, but i don't really want to deal with zooming. – Robert Estivill Dec 28 '12 at 14:51
I was just looking for this, any chance you could post a snippet on how to hide the controls? I can't seem to find it in the documentation. – themanatuf Dec 28 '12 at 20:40
1  
@themanatuf: getUiSettings().setZoomControlsEnabled(false) on your GoogleMap should do it. – CommonsWare Dec 28 '12 at 20:43
@CommonsWare, thanks a lot, that was driving me nuts. – themanatuf Dec 28 '12 at 20:58
There is also an open issue code.google.com/p/gmaps-api-issues/issues/detail?id=4670 for compass and my location buttons - but I think that if they implement control for these buttons it will be also implemented for zoom buttons. – kamil zych Apr 30 at 12:21

Yes, you can change position of ZoomControl and MyLocation button with small hack. In my sample I have SupportMapFragment, which is inflated from xml layout.

View ids for ZoomControl and MyLocation button:

ZoomControl id = 0x1
MyLocation button id = 0x2

Code to update ZoomControl position:

// Find map fragment
SupportMapFragment mapFragment = (SupportMapFragment) getFragmentManager().findFragmentById(R.id.map);

// Find ZoomControl view
View zoomControls = mapFragment.getView().findViewById(0x1);

if (zoomControls != null && zoomControls.getLayoutParams() instanceof RelativeLayout.LayoutParams) {
    // ZoomControl is inside of RelativeLayout
    RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) zoomControls.getLayoutParams();

    // Align it to - parent top|left
    params.addRule(RelativeLayout.ALIGN_PARENT_TOP);
    params.addRule(RelativeLayout.ALIGN_PARENT_LEFT);

    // Update margins, set to 10dp
    final int margin = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 10,
            getResources().getDisplayMetrics());
    params.setMargins(margin, margin, margin, margin);
}
share|improve this answer
How can you ensure mapFragment.getView().findViewById(0x1); will always return the RelativeLayout with the zoom controls in it? As far as i know, that's usually a random integer generated by the android tools when they generate the R class. Am i missing something? – Robert Estivill Feb 19 at 12:13
1  
Because they are explicitly do ZoomControl.setId(1) and MyLocationButton.setId(2). So it should work fine, until they change ids. And there is also a third control with 0x3, but I'm not sure what it is for. – vovkab Feb 19 at 19:27
1  
Thank you for your answer. Though, i will keep the accepted answer because this is a hack, and not backed up by documentation. – Robert Estivill Feb 20 at 15:56
I'm using the construction GoogleMap gMap2 = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.mapViewAPI2)).getMap(); and couldn't determine how to access the mapFragment you referenced. Can you advise? Thanks! – PeteH Apr 10 at 5:44
1  
This is insanely fragile. These values can change with any Maps V2 release. Please simply hide the built-in zoom controls and add your own. – CommonsWare Apr 30 at 11:59
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.