-
Methods Method Description com.vaadin.flow.component.map.configuration.Coordinate.fromLonLat(double, double) Since 23.2, the default coordinate system has been changed to EPSG:4326, which allows passing latitude and longitude into the constructor directly. Usages of this method should be replaced with a call to the constructorCoordinate(double, double).Since the default coordinate system has been changed to EPSG:4326, and the purpose of this method is to return coordinates in EPSG:3857, this method will not return correct results anymore. As a temporary measure, the coordinate system can be changed back to EPSG:3857 using
Map.setUserProjection(String). Long-term, usages of this method should be replaced.