There is a need for a functionality that will take a location/area and return the geolocation type case class Geolocation(lat: Double , lng: Double, name : String)
e.g when a user enters "light ikeja cantonment" this functionality will take the area in question and return the lng,lat if it exists on google maps.
This is to reduce the inaccuracies / inconsistencies if users where to input geolocations.
There is a need for a functionality that will take a location/area and return the geolocation type
case class Geolocation(lat: Double , lng: Double, name : String)e.g when a user enters "light ikeja cantonment" this functionality will take the area in question and return the lng,lat if it exists on google maps.
This is to reduce the inaccuracies / inconsistencies if users where to input geolocations.