Uses of Class
com.vaadin.flow.component.map.configuration.Coordinate
Packages that use Coordinate
Package
Description
-
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 TypeMethodDescriptionvoidMap.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 TypeMethodDescriptionvoidView.setCenter(Coordinate center) Sets the center of the map's viewport.voidView.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 TypeMethodDescriptionvoidPointBasedFeature.setCoordinates(Coordinate coordinates) Sets the coordinates that define where the feature is located on the map.voidPolygonFeature.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 TypeMethodDescriptionvoidPolygonFeature.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.protectedPointBasedFeature(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 locatedCoordinate[][]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 TypeMethodDescriptionvoidPoint.setCoordinates(Coordinate coordinates) Sets the coordinates that locate the point.voidPolygon.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 TypeMethodDescriptionvoidPolygon.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 newPolygongeometry 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 newPolygongeometry 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 theView's updated center coordinatesMapClickEvent.getCoordinate()Gets the coordinate of the click on viewport.MapFeatureDropEvent.getCoordinate()The coordinates that the feature has been dragged toMapFeatureDropEvent.getStartCoordinate()The coordinates that the feature has been dragged from