Próbuję użyć funkcji Geokodując w Mapkit js, ale nie jestem pewien, jak nazwać tę funkcję. Oto mój kod, Dostaję od NULL alert (dane). https://developer.apple.com/documentation/mapkitjs/mapkit/geocoder/2973884-lookup
var geocoder = new mapkit.Geocoder({
language: en-GB,
getsUserLocation: true
});
geocoder.lookup(450 Serra Mall, Stanford, CA USA, getResult);
function getResult(data) {
alert(data);
}













