不使用Google语音自动导航

时间:2018-03-26 05:16:40

标签: android google-api

目前正在开发应用。它使用Google地图API来查找附近的医生。我们的功能显示了我们当前位置附近的医院。虽然点击相同的地图会在新标签页中打开,但会显示标记,但我们希望直接导航到该区域附近的医院,而不是以标记格式显示。我们该怎么办?

1 个答案:

答案 0 :(得分:0)

首先,需要使用当前位置获取特定附近医院的纬度 - 经度,然后需要使用自定义图钉或图标设置标记。然后你需要使用医院lat long移动mapcamera。

获取当前位置
 https://developer.android.com/training/location/retrieve-current.html#java

移至地理位置指示:

LatLng latLng = new LatLng(location.getLatitude(), location.getLongitude());
    CameraUpdate cameraUpdate = CameraUpdateFactory.newLatLngZoom(latLng, 10);
    map.animateCamera(cameraUpdate);

自定义标记:
 https://developers.google.com/maps/documentation/android-api/marker