谷歌地图标记使用PlaceID Android

时间:2015-09-14 08:23:06

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

如何使用place_id而不是经度和纬度坐标创建位置标记?

public void onMapReady(GoogleMap map) {
    LatLng sydney = new LatLng(-34, 151);
    //I want to use the place_id to place in of the Latitude and Longitude 
    map.addMarker(new MarkerOptions().position(sydney).title(" Sydney"));    
    map.moveCamera(CameraUpdateFactory.newLatLng(sydney));
}

1 个答案:

答案 0 :(得分:0)

我认为Maps API不支持。

相反,您需要为给定的PlaceID实现反向查找以返回Lat Long并将其传递给addMarker函数。

如果您使用Places API首先获取地点ID,则查询地方详情会提供有关地理位置的更丰富信息 - https://developers.google.com/places/web-service/details