114.6. Samples
아래 예제에서는 프랑스, 파키스탄의 위도와 경도를 얻을 수 있습니다.
from("direct:start") .to("geocoder:address:Paris, France")
If you provide a header with the CamelGeoCoderAddress
that overrides the endpoint configuration, so to get the location of Copenhagen, Denmark we can send a message with a headers as shown:
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")