android googleMap-如何在没有工具提示箭头的情况下添加InfoWindow

时间:2019-07-03 03:25:01

标签: android google-maps-android-api-2

看看这张图片,信息窗口是如何出现的,与我认为的那个google有所不同?

enter image description here

我正在搜索没有工具提示箭头的文本框。当我检查android google maps功能时,它看起来像这样:

sample googleMap snippet, notice the arrow

我将如何隐藏箭头?我也想将锚点更改为文本框的左上方。这是全部定制吗?

2 个答案:

答案 0 :(得分:0)

使用Google Map util库中的iconGenerator确实很容易做到:

 val iconGenerator = IconGenerator(activity)
    val window = activity.layoutInflater.inflate(R.layout.myinfo_window,null)
    iconGenerator.setContentView(window)
    iconGenerator.setBackground(activity.getDrawableCompat(R.drawable.mybox_bg))
    return googleMap.addMarker(MarkerOptions()
            .position(location)
            .icon(BitmapDescriptorFactory.fromBitmap(iconGenerator.makeIcon())))

myinfo_window.xml如下所示:

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:padding="13dp"
android:layout_height="wrap_content">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Cool LOCATION"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"/>

</android.support.constraint.ConstraintLayout>

注意: R.drawable.mybox_bg 是可绘制的9补丁。

答案 1 :(得分:0)

您可以轻松地向Google地图添加信息窗口。

静态最终LatLng墨尔本=新LatLng(-37.81319,144.96298); 墨尔本标记= mMap.addMarker(new MarkerOptions()                           .position(墨尔本)                           .title(“墨尔本”)); melbourne.showInfoWindow();