dlsc-software-consulting-gmbh / GMapsFX

Java API for using Google Maps within a JavaFX application.
http://rterp.github.io/GMapsFX/
Apache License 2.0
319 stars 119 forks source link

No language change in GoogleMapView #162

Closed mimenz closed 9 months ago

mimenz commented 6 years ago

The constructor GoogleMapView(String, String, String, String, boolean) doesn't take over the arguments language and region: this.language = "en"; this.region = "US";

Would be fine if you could fix this!

BTW: Thanks for this really great lib!!

mimenz commented 6 years ago

Code should be changed to:

public GoogleMapView(String mapResourcePath, String language, String region, String key, boolean debug) {
    this.language = language;
    this.region = region;
    this.key = key;

...