Java 是否有办法使用sendLocation在telegram bot上绘制多个管脚?

Java 是否有办法使用sendLocation在telegram bot上绘制多个管脚?,java,location,telegram-bot,Java,Location,Telegram Bot,我想在地图上绘制多个管脚,但执行下面的代码只能得到一个管脚的地图。有什么办法吗 SendLocation test = new SendLocation(); test.setChatId(update.getMessage().getChatId()); test.setLongitude((float)(locate.get_x_long())); test.setLatitude((float)locate.get_y_lat()); try { execute(test);

我想在地图上绘制多个管脚,但执行下面的代码只能得到一个管脚的地图。有什么办法吗

SendLocation test = new SendLocation();
test.setChatId(update.getMessage().getChatId());
test.setLongitude((float)(locate.get_x_long()));
test.setLatitude((float)locate.get_y_lat());
try {
      execute(test);  
} catch (TelegramApiException e) {
     e.printStackTrace();
}