Skip to content

Commit

Permalink
Updated GMapsFX version in Google demo module.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemmermann committed Sep 2, 2022
1 parent 59c753a commit 7706a46
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
import com.calendarfx.google.service.GoogleConnector;
import com.calendarfx.view.popover.EntryPopOverPane;
import com.google.code.geocoder.model.GeocoderGeometry;
import com.lynden.gmapsfx.GoogleMapView;
import com.lynden.gmapsfx.MapComponentInitializedListener;
import com.lynden.gmapsfx.javascript.object.GoogleMap;
import com.lynden.gmapsfx.javascript.object.LatLong;
import com.lynden.gmapsfx.javascript.object.MapOptions;
import com.lynden.gmapsfx.javascript.object.MapTypeIdEnum;
import com.lynden.gmapsfx.javascript.object.Marker;
import com.lynden.gmapsfx.javascript.object.MarkerOptions;
import com.dlsc.gmapsfx.GoogleMapView;
import com.dlsc.gmapsfx.MapComponentInitializedListener;
import com.dlsc.gmapsfx.javascript.object.GoogleMap;
import com.dlsc.gmapsfx.javascript.object.LatLong;
import com.dlsc.gmapsfx.javascript.object.MapOptions;
import com.dlsc.gmapsfx.javascript.object.MapTypeIdEnum;
import com.dlsc.gmapsfx.javascript.object.Marker;
import com.dlsc.gmapsfx.javascript.object.MarkerOptions;
import javafx.application.Platform;
import javafx.concurrent.Service;
import javafx.concurrent.Task;
Expand All @@ -49,7 +49,7 @@ public class GoogleEntryGMapsFXView extends EntryPopOverPane implements MapCompo
this.entry = entry;
this.entry.locationProperty().addListener(obs -> updateLocation());

this.mapView.addMapInializedListener(this);
this.mapView.addMapInitializedListener(this);
this.mapView.getStyleClass().add("map");
this.mapView.setMouseTransparent(true);

Expand Down
2 changes: 1 addition & 1 deletion CalendarFXGoogle/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
requires javafx.controls;
requires javafx.web;
requires geocoder.java;
requires GMapsFX;
requires com.dlsc.gmapsfx;
requires com.google.common;
requires com.google.api.client;
requires com.google.api.client.auth;
Expand Down

0 comments on commit 7706a46

Please sign in to comment.