113.5. Samples
在下面的示例中,我们获得法国和法国的态度
from("direct:start") .to("geocoder:address:Paris, France")
如果您向 CamelGeoCoderAddress
提供标头,则会覆盖端点配置,因此要获取 Copenhagen 的位置,Denmark 我们可以使用所示的标头发送消息:
template.sendBodyAndHeader("direct:start", "Hello", GeoCoderConstants.ADDRESS, "Copenhagen, Denmark");
要获得我们可以做到的一度和长度的地址:
from("direct:start") .to("geocoder:latlng:40.714224,-73.961452") .log("Location ${header.CamelGeocoderAddress} is at lat/lng: ${header.CamelGeocoderLatlng} and in country ${header.CamelGeoCoderCountryShort}")
哪个日志
Location 285 Bedford Avenue, Brooklyn, NY 11211, USA is at lat/lng: 40.71412890,-73.96140740 and in country US
要获得当前位置,您可以使用"current"作为地址,如下所示:
from("direct:start") .to("geocoder:address:current")