function geocode(text,platform) {
var geocoder = platform.getGeocodingService(),
geocodingParameters = {
searchText: 'Sidi allal tazi 14052 kenitra',
jsonattributes : 1
};
Calling function
geocoder.geocode(geocodingParameters,onSuccess,onError);
How can I get those input places mapped by using the above function?