I'm reading this example snippet in googlemaps API.
The below is an extract from the snippet.
getNormalizedCoord(coord, zoom) is a separately defined function.
The value of the getTileUrl attribute is assigned to the output of the inline function which takes (coord, zoom) as arguements.
var moonMapType = new google.maps.ImageMapType({
getTileUrl: function(coord, zoom) {
var normalizedCoord = getNormalizedCoord(coord, zoom);
....
....
},
....
....
});
Question: What are the values of the coord, zoom variables when they are called inside the inline function?
I don't see them assigned to anything prior to calling them.