package googlemaptest; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.web.WebEngine; import javafx.scene.web.WebView; import javafx.stage.Stage; public class GoogleMapTest extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage stage) throws Exception { WebView webView = new WebView(); WebEngine webEngine = webView.getEngine(); webEngine.load(getClass().getResource("googleMap.html").toString()); stage.setScene(new Scene(webView)); stage.show(); } }