我正在使用Twitter4J從他/她的個人資料中檢索用戶的位置。我有一組形成使用此調用多邊形範圍(通常爲4個或更多座標)的地理座標:使用Java查找座標集中心
// Status tweet
Place place = tweet.getPlace();
GeoLocation[][] box = place.getBoundingBoxCoordinates();
有沒有一種方法來計算中心(或接近中心,或者至少一個點包含)這個地區/多邊形/邊界?有沒有用於此的Java API?
是否有一個Java相當於從這個post採取這段JavaScript代碼:
var bounds = new google.maps.LatLngBounds();
bounds.extend(results[0].geometry.location);
var center = bounds.getCenter();
你能否請教你的輸入是什麼樣子,它是如何存儲的,等等? –