gluonhq / maps

https://gluonhq.com/labs/maps/
GNU General Public License v3.0
140 stars 36 forks source link

Fxml updates #7

Closed aalmiray closed 7 years ago

aalmiray commented 7 years ago

This PR allows writing FXML like the following one

<?import com.gluonhq.maps.MapView?>
<?import javafx.scene.layout.StackPane?>
<?import com.gluonhq.maps.MapPoint?>
<StackPane prefHeight="610.0" prefWidth="600.0"
           xmlns:fx="http://javafx.com/fxml"
           fx:controller="org.kordamp.AppController">
    <MapView fx:id="mapView" zoom="6.0">
       <center>
           <MapPoint latitude="47.551555" longitude="7.591732"/>
       </center>
    </MapView>
</StackPane>
aalmiray commented 7 years ago

Relates to #4