Lightning Aura Components – Step 10: Aura Components Specialist Failing Despite Map Component Availability

I am at the last step of this superbadge and am getting the following error when I check step 10:
enter image description here

From the lightning app builder the Map component is clearly available and already exists on the page I created.
enter image description here

Here is the Friends_With_Boats Flexipage displaying the Map component with results.
enter image description here

Has anyone else bumped into this issue? I am at a loss as to what to do next except maybe wait a few hours then click the button again to see if this issue resolves itself…

Best Answer

So the issue had nothing to do with the error message reported.

In order to trouble-shoot the issue I changed the PlotMapMarker.evt from 'APPLICATION' to 'COMPONENT' then hit submit on item 10. This time I received a message that the PlotMapMarker.evt wasn't configured correctly, which is as one would expect. From there I continued down the path of incorrectness, updating the BoatTile.cmp and its controller to handle a component event instead of an application event. I then hit submit again. The message I received was that the BoatTile.cmp wasn't registering the PlotMapMarker.evt. So then I looked over what was in that line and discovered that I had type="{!c.PlotMapMarker}" instead of type="{!c:PlotMapMarker} I corrected the typo, reverted the event back to application, reconfigured the BoatTile component controller to process the app event and that did it.