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 TypeMethodDescriptionLineStringFeature.getCoordinates()The coordinates that define the line string, as an array.PointBasedFeature.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 TypeMethodDescriptionvoidLineStringFeature.setCoordinates(Coordinate... coordinates) Sets the coordinates that define the line string.voidPointBasedFeature.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 TypeMethodDescriptionvoidLineStringFeature.setCoordinates(List<Coordinate> coordinates) Sets the coordinates that define the line string.voidPolygonFeature.setCoordinates(List<Coordinate> coordinates) Sets the coordinates that define the polygon.Constructors in com.vaadin.flow.component.map.configuration.feature with parameters of type CoordinateModifierConstructorDescriptionLineStringFeature(Coordinate... coordinates) Creates a new line string feature with the default style using the provided coordinates.MarkerFeature(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 CoordinateModifierConstructorDescriptionLineStringFeature(List<Coordinate> coordinates) Creates a new line string feature with the default style using the provided coordinates.PolygonFeature(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 TypeMethodDescriptionLineString.getCoordinates()The coordinates that define the line string, as an array.Point.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 TypeMethodDescriptionvoidLineString.setCoordinates(Coordinate... coordinates) Sets the coordinates that define the line string.voidPoint.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 TypeMethodDescriptionvoidLineString.setCoordinates(List<Coordinate> coordinates) Sets the coordinates that define the line string.voidPolygon.setCoordinates(List<Coordinate> coordinates) Sets the coordinates that define the polygon.Constructors in com.vaadin.flow.component.map.configuration.geometry with parameters of type CoordinateModifierConstructorDescriptionLineString(Coordinate... coordinates) Constructs a newLineStringgeometry based on the provided coordinates.Point(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 CoordinateModifierConstructorDescriptionLineString(List<Coordinate> coordinates) Constructs a newLineStringgeometry based on the provided coordinates.Polygon(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