This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.mycompany.gmapstestproject; | |
import com.lynden.gmapsfx.GoogleMapView; | |
import com.lynden.gmapsfx.MapComponentInitializedListener; | |
import com.lynden.gmapsfx.javascript.object.*; | |
import com.lynden.gmapsfx.service.geocoding.GeocoderStatus; | |
import com.lynden.gmapsfx.service.geocoding.GeocodingResult; | |
import com.lynden.gmapsfx.service.geocoding.GeocodingService; | |
import java.net.URL; | |
import java.util.ResourceBundle; | |
import javafx.beans.property.SimpleStringProperty; | |
import javafx.beans.property.StringProperty; | |
import javafx.event.ActionEvent; | |
import javafx.fxml.FXML; | |
import javafx.fxml.Initializable; | |
import javafx.scene.control.Alert; | |
import javafx.scene.control.TextField; | |
public class FXMLController implements Initializable, MapComponentInitializedListener { | |
@FXML | |
private GoogleMapView mapView; | |
@FXML | |
private TextField addressTextField; | |
private GoogleMap map; | |
private GeocodingService geocodingService; | |
private StringProperty address = new SimpleStringProperty(); | |
@Override | |
public void initialize(URL url, ResourceBundle rb) { | |
mapView.addMapInializedListener(this); | |
address.bind(addressTextField.textProperty()); | |
} | |
@Override | |
public void mapInitialized() { | |
geocodingService = new GeocodingService(); | |
MapOptions mapOptions = new MapOptions(); | |
mapOptions.center(new LatLong(47.6097, -122.3331)) | |
.mapType(MapTypeIdEnum.ROADMAP) | |
.overviewMapControl(false) | |
.panControl(false) | |
.rotateControl(false) | |
.scaleControl(false) | |
.streetViewControl(false) | |
.zoomControl(false) | |
.zoom(12); | |
map = mapView.createMap(mapOptions); | |
} | |
@FXML | |
public void addressTextFieldAction(ActionEvent event) { | |
geocodingService.geocode(address.get(), (GeocodingResult[] results, GeocoderStatus status) -> { | |
LatLong latLong = null; | |
if( status == GeocoderStatus.ZERO_RESULTS) { | |
Alert alert = new Alert(Alert.AlertType.ERROR, "No matching address found"); | |
alert.show(); | |
return; | |
} else if( results.length > 1 ) { | |
Alert alert = new Alert(Alert.AlertType.WARNING, "Multiple results found, showing the first one."); | |
alert.show(); | |
latLong = new LatLong(results[0].getGeometry().getLocation().getLatitude(), results[0].getGeometry().getLocation().getLongitude()); | |
} else { | |
latLong = new LatLong(results[0].getGeometry().getLocation().getLatitude(), results[0].getGeometry().getLocation().getLongitude()); | |
} | |
map.setCenter(latLong); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment