Google Maps Service
In java am trying to get Latitude and Longitude dynamically by passing the address.
GeoApiContext context = new GeoApiContext.Builder().apiKey("KEY") .build();
String address = ""1600 Amphitheatre Parkway Mountain View, CA 94043";
GeocodingResult[] results = GeocodingApi.geocode(context, address).await();
Added These two dependencies :
<dependency>
<groupId>com.google.maps</groupId>
<artifactId>google-maps-services</artifactId>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
Note: There is no compilation error.
But AEM is not able to resolve these.
com.google.maps -- Cannot be resolved
com.google.maps.errors -- Cannot be resolved
com.google.maps.model -- Cannot be resolved
What all dependencies I need to add ?

