Hi All ,
We are using com.adobe.cq.addres API to get Coordinates in our Service Class.But this is deprecated as part of
https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/release-notes/de....
What we could use instead of above API.Any suggestion are appreciated.
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
The com.adobe.cq.address API (including GeocodeProvider and LocationManager) has been deprecated as of AEM 6.4 and later versions, with no direct replacement provided within the AEM Java API itself.
The com.adobe.cq.address.api.Address class seems designed to be adaptable from a resource or request and provides getters and setters for address properties. To remove its usage, you essentially need to replace the source of the address data and how you access it. Since AEM Cloud Service emphasizes external services, the most common approach is to integrate with a third-party geocoding API.
Your new approach will likely involve either:
General implementation steps with a third-party geocoding API:
Views
Replies
Total Likes
The com.adobe.cq.address API (including GeocodeProvider and LocationManager) has been deprecated as of AEM 6.4 and later versions, with no direct replacement provided within the AEM Java API itself.
The com.adobe.cq.address.api.Address class seems designed to be adaptable from a resource or request and provides getters and setters for address properties. To remove its usage, you essentially need to replace the source of the address data and how you access it. Since AEM Cloud Service emphasizes external services, the most common approach is to integrate with a third-party geocoding API.
Your new approach will likely involve either:
General implementation steps with a third-party geocoding API:
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies