Placing Zoom Controls in a MapView - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T07:57:32Zhttp://stackoverflow.com/feeds/question/263507http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/263507/placing-zoom-controls-in-a-mapview2Placing Zoom Controls in a MapViewjasonhudgins2008-11-04T21:30:22Z2009-02-27T11:45:14Z
<p>I'm trying to get the zoom controls to show up in a mapview, the following code almost works, but the zoom controls appear in the top left of the mapview, not the bottom center like I'm specifiying via setGravity(). Can someone enlighten me as to what I'm missing?</p>
<p>zoomView = (LinearLayout) mapView.getZoomControls();</p>
<p>zoomView.setLayoutParams(new ViewGroup.LayoutParams
(ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT)); </p>
<p>zoomView.setGravity(Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL);
mapView.addView(zoomView);</p>
<p>These views/layouts are all constructed programatically, there is no layout file to tweak.</p>
http://stackoverflow.com/questions/263507/placing-zoom-controls-in-a-mapview/275145#2751450Answer by Matthew J for Placing Zoom Controls in a MapViewMatthew J2008-11-08T20:24:37Z2008-11-08T20:24:37Z<p>Reto - the problem with using FILL_PARENT is that the zoom control then "steals" all of the touch events; so that you can't pan the map while the zoom controls are visible. Do you know how to prevent this?</p>
http://stackoverflow.com/questions/263507/placing-zoom-controls-in-a-mapview/280237#2802371Answer by Reto Meier for Placing Zoom Controls in a MapViewReto Meier2008-11-11T07:27:39Z2008-11-11T07:27:39Z<p>The trick here is to place another Layout container where you want to put the ZoomControls and then insert the ZoomControls into that.</p>
<p>The real trick is to use the <code>RelativeLayout</code> rather than <code>LinearLayout</code> to position the elements, as shown in this sample <code>layout.xml</code>:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.android.maps.MapView
android:id="@+id/myMapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="MY_MAP_API_KEY"
/>
<LinearLayout android:id="@+id/layout_zoom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
/>
</RelativeLayout>
</code></pre>
<p>The *layout_zoom* LinearLayout element is positioned in the bottom center of the screen, placing it over the middle/bottom of the <code>MapView</code>. </p>
<p>Then within your Activity's <code>onCreate</code>, get a reference to the *layout_zoom* element and insert the ZoomControl into it, much like you've already done:</p>
<pre><code>LinearLayout zoomLayout =(LinearLayout)findViewById(R.id.layout_zoom);
View zoomView = myMapView.getZoomControls();
zoomLayout.addView(zoomView, new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
myMapView.displayZoomControls(true);
</code></pre>
<p>The ZoomControls should now appear on a long click, without stealing the map touch events.</p>
http://stackoverflow.com/questions/263507/placing-zoom-controls-in-a-mapview/325159#3251591Answer by jasonhudgins for Placing Zoom Controls in a MapViewjasonhudgins2008-11-28T06:32:53Z2008-11-28T06:32:53Z<p>Reto : thanks for your reply, but the idea was to do it <em>without</em> using XML layouts.</p>
<p>I eventually worked out the problem. Because a MapView is a subclass of ViewGroup, you can easily add child views (like the zoom controls). All you need is a MapView.LayoutParams instance and you're good to go. I did something like this (puts zoom controls in the bottom center of the mapview).</p>
<pre><code> // layout to insert zoomcontrols at the bottom center of a mapview
MapView.LayoutParams params = MapView.LayoutParams(
LayoutParams.WRAP_CONTENT,
LayoutParams.WRAP_CONTENT,
mapViewWidth / 2, mapViewHeight,
MapView.LayoutParams.BOTTOM_CENTER);
// add zoom controls
mapView.addView(mapView.getZoomControls(), params);
</code></pre>
http://stackoverflow.com/questions/263507/placing-zoom-controls-in-a-mapview/471155#4711550Answer by RoelandP for Placing Zoom Controls in a MapViewRoelandP2009-01-22T22:44:53Z2009-01-22T22:44:53Z<p>Unfortunately I cant add a comment to Jason Hudgins approved solution from Nov 28 at 6:32 but I got a tiny error with his code:</p>
<p>In this line:</p>
<pre><code>MapView.LayoutParams params = MapView.LayoutParams(
</code></pre>
<p>The error Eclipse gave me was </p>
<blockquote>
<p>"The method LayoutParams(int, int,
int, int, int) is undefined for the
type MapView"</p>
</blockquote>
<p>instead, creating a new MapView.LayoutParams object fixed it, like this:</p>
<pre><code>MapView.LayoutParams params = **new** MapView.LayoutParams(
</code></pre>
<p>It took me some time to find out, as I am a n00b :D</p>
<p>Greetings from Amsterdam, Roeland</p>
http://stackoverflow.com/questions/263507/placing-zoom-controls-in-a-mapview/594435#5944351Answer by magegu for Placing Zoom Controls in a MapViewmagegu2009-02-27T11:45:14Z2009-02-27T11:45:14Z<p>from the <a href="http://groups.google.com/group/android-developers/browse%5Fthread/thread/b4a12843cd33497b" rel="nofollow">google groups thread</a> i found this:</p>
<p>ZoomControls without XML:</p>
<pre><code> public class MyMapActivity extends MapActivity { public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
RelativeLayout relativeLayout = new RelativeLayout(this);
setContentView(relativeLayout);
final MapView mapView = new MapView(this, DEBUG_MAP_API_KEY);
RelativeLayout.LayoutParams mapViewLayoutParams = new
RelativeLayout.LayoutParams
(RelativeLayout.LayoutParams.FILL_PARENT,RelativeLayout.LayoutParams.FILL_PARENT );
relativeLayout.addView(mapView, mapViewLayoutParams);
RelativeLayout.LayoutParams zoomControlsLayoutParams = new
RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT,
RelativeLayout.LayoutParams.WRAP_CONTENT );
zoomControlsLayoutParams.addRule
(RelativeLayout.ALIGN_PARENT_BOTTOM);
zoomControlsLayoutParams.addRule
(RelativeLayout.CENTER_HORIZONTAL);
relativeLayout.addView(mapView.getZoomControls(),
zoomControlsLayoutParams);
mapView.setClickable(true);
mapView.setEnabled(true);
}
</code></pre>
<p>was 100% working for me with SDK1.1</p>