相关疑难解决方法(0)

在谷歌地图上放置一个按钮

我想在Map,Satelite和Hybrid按钮旁边的Google Map上添加一个按钮.

我想知道它是否可能以及如何才能做到最好?

所以我的想法是在google地图上覆盖一个可点击的图像,但不确定是否会将所有事件从谷歌地图上移除.

你有什么想法可以做到吗?

google-maps overlay button

13
推荐指数
2
解决办法
4万
查看次数

在Map Fragment上设置textview

我想创建此布局,但我无法在片段上设置文本图像.我要求设置布局就像我在附图中所示.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/relativeLayoutFragment"
    android:layout_width="match_parent"
    android:layout_height="fill_parent" >

     <!-- ListRow Left sied Thumbnail image -->

    <LinearLayout
        android:id="@+id/thumbnail"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_marginRight="5dip"
        android:background="@drawable/image_bg"
        android:padding="3dip" 
        android:orientation="horizontal">

        <ImageView
            android:id="@+id/list_image"
            android:layout_width="50dip"
            android:layout_height="50dip"
            android:src="@drawable/atm" />
    </LinearLayout>

    <!-- Name of ATM -->

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/thumbnail"
        android:layout_toRightOf="@+id/thumbnail"
        android:textColor="#040404"
        android:textSize="15dip"
        android:textStyle="bold"
        android:typeface="sans" />

    <!-- Location -->

    <TextView
        android:id="@+id/location"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/title"
        android:layout_marginTop="1dip"
        android:layout_toRightOf="@+id/thumbnail"
        android:textColor="#343434"
        android:textSize="10dip" />


    <fragment
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="fill_parent"
        android:layout_height="match_parent" />

</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

android google-maps

11
推荐指数
1
解决办法
2万
查看次数

如何在google map api v3上添加切换按钮?

我找到了库:写入api v2的geometrycontrols并允许添加按钮.如何制作切换按钮以在api v3中添加标记?我发起了地图等

javascript google-maps google-maps-api-3

1
推荐指数
1
解决办法
1万
查看次数