Init auf git.dergeorg.at
This commit is contained in:
parent
c5d51edf57
commit
1ff4a2cd6c
@ -39,3 +39,27 @@ App started
|
|||||||
2021-02-26 21:35:08 INFO PostgresHelper:15 - User Table created
|
2021-02-26 21:35:08 INFO PostgresHelper:15 - User Table created
|
||||||
2021-02-26 21:35:10 ERROR PSQLException:33 - Connection to postgres.dergeorg.at:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
|
2021-02-26 21:35:10 ERROR PSQLException:33 - Connection to postgres.dergeorg.at:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
|
||||||
2021-02-26 21:35:10 ERROR NullPointerException:33 -
|
2021-02-26 21:35:10 ERROR NullPointerException:33 -
|
||||||
|
2021-03-03 13:12:33 INFO TourPlaner:15 - Tour Planer App gestartet
|
||||||
|
2021-03-03 13:12:34 INFO PostgresHelper:15 - User Table created
|
||||||
|
2021-03-03 13:16:04 INFO TourPlaner:15 - Tour Planer App gestartet
|
||||||
|
2021-03-03 13:16:04 ERROR PresenterMain:33 -
|
||||||
|
/C:/Users/georg/Documents/FH/Tourplaner/out/production/Tourplaner/tourplaner/ui/tourplaner.fxml:163
|
||||||
|
|
||||||
|
2021-03-03 13:16:04 INFO PostgresHelper:15 - User Table created
|
||||||
|
2021-03-03 13:20:58 INFO TourPlaner:15 - Tour Planer App gestartet
|
||||||
|
2021-03-03 13:20:58 ERROR PresenterMain:33 -
|
||||||
|
/C:/Users/georg/Documents/FH/Tourplaner/out/production/Tourplaner/tourplaner/ui/tourplaner.fxml:163
|
||||||
|
|
||||||
|
2021-03-03 13:20:58 INFO PostgresHelper:15 - User Table created
|
||||||
|
2021-03-03 15:48:05 INFO TourPlaner:15 - Tour Planer App gestartet
|
||||||
|
2021-03-03 15:48:05 ERROR PresenterMain:33 -
|
||||||
|
/C:/Users/georg/Documents/FH/Tourplaner/out/production/Tourplaner/tourplaner/ui/tourplaner.fxml:163
|
||||||
|
|
||||||
|
2021-03-03 15:48:05 INFO PostgresHelper:15 - User Table created
|
||||||
|
2021-03-03 15:50:47 INFO TourPlaner:15 - Tour Planer App gestartet
|
||||||
|
2021-03-03 15:50:47 ERROR PresenterMain:33 -
|
||||||
|
/C:/Users/georg/Documents/FH/Tourplaner/out/production/Tourplaner/tourplaner/ui/tourplaner.fxml:163
|
||||||
|
|
||||||
|
2021-03-03 15:50:47 INFO PostgresHelper:15 - User Table created
|
||||||
|
2021-03-03 15:52:06 INFO TourPlaner:15 - Tour Planer App gestartet
|
||||||
|
2021-03-03 15:52:07 INFO PostgresHelper:15 - User Table created
|
||||||
|
18
src/tourplaner/ui/TourplanerController.java
Normal file
18
src/tourplaner/ui/TourplanerController.java
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
package tourplaner.ui;
|
||||||
|
|
||||||
|
import javafx.fxml.FXML;
|
||||||
|
import javafx.scene.web.WebEngine;
|
||||||
|
import javafx.scene.web.WebView;
|
||||||
|
|
||||||
|
public class TourplanerController {
|
||||||
|
@FXML
|
||||||
|
private WebView mapView;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
private void initialize()
|
||||||
|
{
|
||||||
|
WebEngine engine = mapView.getEngine();
|
||||||
|
engine.load("http://www.google.com");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -51,8 +51,9 @@
|
|||||||
<?import javafx.scene.layout.VBox?>
|
<?import javafx.scene.layout.VBox?>
|
||||||
<?import javafx.scene.paint.Color?>
|
<?import javafx.scene.paint.Color?>
|
||||||
<?import javafx.scene.text.Font?>
|
<?import javafx.scene.text.Font?>
|
||||||
|
<?import javafx.scene.web.WebView?>
|
||||||
|
|
||||||
<VBox prefHeight="600.0" prefWidth="900.0" xmlns="http://javafx.com/javafx/11.0.2" xmlns:fx="http://javafx.com/fxml/1">
|
<VBox prefHeight="600.0" prefWidth="900.0" xmlns="http://javafx.com/javafx/15.0.1" xmlns:fx="http://javafx.com/fxml/1">
|
||||||
<children>
|
<children>
|
||||||
<MenuBar VBox.vgrow="NEVER">
|
<MenuBar VBox.vgrow="NEVER">
|
||||||
<menus>
|
<menus>
|
||||||
@ -155,7 +156,14 @@
|
|||||||
<children>
|
<children>
|
||||||
<TabPane layoutX="1.0" layoutY="69.0" prefHeight="225.0" prefWidth="702.0" tabClosingPolicy="UNAVAILABLE" AnchorPane.bottomAnchor="-67.0" AnchorPane.leftAnchor="1.0" AnchorPane.rightAnchor="1.0" AnchorPane.topAnchor="0.0">
|
<TabPane layoutX="1.0" layoutY="69.0" prefHeight="225.0" prefWidth="702.0" tabClosingPolicy="UNAVAILABLE" AnchorPane.bottomAnchor="-67.0" AnchorPane.leftAnchor="1.0" AnchorPane.rightAnchor="1.0" AnchorPane.topAnchor="0.0">
|
||||||
<tabs>
|
<tabs>
|
||||||
<Tab text="Route" />
|
<Tab text="Route">
|
||||||
|
<content>
|
||||||
|
<AnchorPane prefHeight="200.0" prefWidth="200.0">
|
||||||
|
<children>
|
||||||
|
<WebView id="mapView" prefHeight="200.0" prefWidth="200.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" />
|
||||||
|
</children>
|
||||||
|
</AnchorPane>
|
||||||
|
</content></Tab>
|
||||||
<Tab text="Description">
|
<Tab text="Description">
|
||||||
<content>
|
<content>
|
||||||
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
|
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user