How do I get the google maps API to work in a JavaFX program?

I am building a navigator program in Java using JavaFX. I’m trying to use a map overlay using the WebEngine class but it doesn’t want to load a map. My HTML file loads fine as displays the map when running locally in a browser.

When I run it in my JavaFX program, the map overlay loads correctly but says “Sorry, we have no imagery here”. My API key is valid and working in other application aspects such as geocoding. I have also checked that javascript is enabled for the web engine and that the API does not restrict javascript map requests. However, since the html file runs fine on its own, I am inclined to believe that this is an issue with how the WebEngine module handles the html file.

I am not sure what else to troubleshoot to get the map to display within the application. I would appreciate any ideas or fixes to this issue.

Screenshot of map running within application