如何使用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));
}
答案 0 :(得分:0)
我认为Maps API不支持。
相反,您需要为给定的PlaceID实现反向查找以返回Lat Long并将其传递给addMarker函数。
如果您使用Places API首先获取地点ID,则查询地方详情会提供有关地理位置的更丰富信息 - https://developers.google.com/places/web-service/details