Uses of Class
com.vaadin.flow.component.map.configuration.Coordinate
-
Uses of Coordinate in com.vaadin.flow.component.map
Methods in com.vaadin.flow.component.map that return CoordinateMethods in com.vaadin.flow.component.map with parameters of type CoordinateModifier and TypeMethodDescriptionvoid
Map.setCenter
(Coordinate center) Sets the center of the map's viewport.
-
Uses of Coordinate in com.vaadin.flow.component.map.configuration
Methods in com.vaadin.flow.component.map.configuration that return CoordinateMethods in com.vaadin.flow.component.map.configuration with parameters of type CoordinateModifier and TypeMethodDescriptionvoid
View.setCenter
(Coordinate center) Sets the center of the map's viewport.
void
View.updateInternalViewState
(Coordinate center, double rotation, double zoom, Extent extent) Updates internal state of view to the latest values received from client.
-
Uses of Coordinate in com.vaadin.flow.component.map.configuration.feature
Methods in com.vaadin.flow.component.map.configuration.feature that return CoordinateModifier and TypeMethodDescriptionPointBasedFeature.getCoordinates()
The coordinates that define where the feature is located on the map.
Coordinate[][]
PolygonFeature.getCoordinates()
The coordinates where the polygon is located, as a two-dimensional array.
Methods in com.vaadin.flow.component.map.configuration.feature with parameters of type CoordinateModifier and TypeMethodDescriptionvoid
PointBasedFeature.setCoordinates
(Coordinate coordinates) Sets the coordinates that define where the feature is located on the map.
void
PolygonFeature.setCoordinates
(Coordinate[][] coordinates) Sets the coordinates that define the polygon as a two-dimensional array.
Method parameters in com.vaadin.flow.component.map.configuration.feature with type arguments of type CoordinateModifier and TypeMethodDescriptionvoid
PolygonFeature.setCoordinates
(List<Coordinate> coordinates) Sets the coordinates that define the polygon.
Constructors in com.vaadin.flow.component.map.configuration.feature with parameters of type CoordinateModifierConstructorDescriptionMarkerFeature
(Coordinate coordinates) Creates a new marker feature located at the specified coordinates, displaying a default marker icon.
MarkerFeature
(Coordinate coordinates, Icon icon) Creates a new marker feature located at the specified coordinates, displaying the specified custom icon.
protected
PointBasedFeature
(Coordinate coordinates) Constructor parameters in com.vaadin.flow.component.map.configuration.feature with type arguments of type CoordinateModifierConstructorDescriptionPolygonFeature
(List<Coordinate> coordinates) Creates a new polygon feature with the default style using the provided coordinates.
-
Uses of Coordinate in com.vaadin.flow.component.map.configuration.geometry
Methods in com.vaadin.flow.component.map.configuration.geometry that return CoordinateModifier and TypeMethodDescriptionPoint.getCoordinates()
The coordinates where the point is located
Coordinate[][]
Polygon.getCoordinates()
The coordinates where the polygon is located, as a two-dimensional array.
Methods in com.vaadin.flow.component.map.configuration.geometry with parameters of type CoordinateModifier and TypeMethodDescriptionvoid
Point.setCoordinates
(Coordinate coordinates) Sets the coordinates that locate the point.
void
Polygon.setCoordinates
(Coordinate[][] coordinates) Sets the coordinates that define the polygon as a two-dimensional array.
Method parameters in com.vaadin.flow.component.map.configuration.geometry with type arguments of type CoordinateModifier and TypeMethodDescriptionvoid
Polygon.setCoordinates
(List<Coordinate> coordinates) Sets the coordinates that define the polygon.
Constructors in com.vaadin.flow.component.map.configuration.geometry with parameters of type CoordinateModifierConstructorDescriptionPoint
(Coordinate coordinates) Creates a new point geometry located at the specified coordinates.
Polygon
(Coordinate[][] coordinates) Constructs a new
Polygon
geometry based on the provided two-dimensional array of coordinates.Constructor parameters in com.vaadin.flow.component.map.configuration.geometry with type arguments of type CoordinateModifierConstructorDescriptionPolygon
(List<Coordinate> coordinates) Constructs a new
Polygon
geometry based on the provided list of coordinates. -
Uses of Coordinate in com.vaadin.flow.component.map.events
Methods in com.vaadin.flow.component.map.events that return CoordinateModifier and TypeMethodDescriptionMapViewMoveEndEvent.getCenter()
Gets the
View
's updated center coordinatesMapClickEvent.getCoordinate()
Gets the coordinate of the click on viewport.
MapFeatureDropEvent.getCoordinate()
The coordinates that the feature has been dragged to
MapFeatureDropEvent.getStartCoordinate()
The coordinates that the feature has been dragged from