Class LineStringFeature
java.lang.Object
io.jmix.mapsflowui.kit.component.model.MapObservableObject
io.jmix.mapsflowui.kit.component.model.feature.Feature
io.jmix.mapsflowui.component.model.feature.LineStringFeature
- All Implemented Interfaces:
FeatureClickNotifier<LineStringFeature>
,Serializable
Polyline feature with predefined
LineStringGeometry
.
Usage example:
protected void addLineString(VectorSource source) { GeometryFactory geometryFactory = GeometryUtils.getGeometryFactory(); LineString lineString = geometryFactory.createLineString(new Coordinate[]{ new Coordinate(11.013511, 50.978630), new Coordinate(2.392612, 48.782472), new Coordinate(-3.674846, 40.353581)}); source.addFeature(new LineStringFeature(lineString)); }
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class io.jmix.mapsflowui.kit.component.model.MapObservableObject
MapObservableObject.ObjectChangeEvent
Nested classes/interfaces inherited from interface io.jmix.mapsflowui.component.model.feature.FeatureClickNotifier
FeatureClickNotifier.AbstractFeatureClickEvent<F>, FeatureClickNotifier.FeatureClickEvent<F extends Feature>, FeatureClickNotifier.FeatureDoubleClickEvent<F extends Feature>, FeatureClickNotifier.FeatureSingleClickEvent<F extends Feature>
-
Field Summary
Fields inherited from class io.jmix.mapsflowui.kit.component.model.feature.Feature
geometry, properties, styles
Fields inherited from class io.jmix.mapsflowui.kit.component.model.MapObservableObject
children, dirty, eventBus, listener, metaProperties, parent, removedChildren, syncId
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncom.vaadin.flow.shared.Registration
Adds feature click listener.com.vaadin.flow.shared.Registration
addDoubleClickListener
(Consumer<FeatureClickNotifier.FeatureDoubleClickEvent<LineStringFeature>> listener) Adds feature double click listener.com.vaadin.flow.shared.Registration
addSingleClickListener
(Consumer<FeatureClickNotifier.FeatureSingleClickEvent<LineStringFeature>> listener) Adds feature single click listener.void
Adds style to the feature.org.locationtech.jts.geom.LineString
void
setLineString
(org.locationtech.jts.geom.LineString lineString) Sets linestring to the feature's geometry.withProperties
(Map<String, Object> properties) Sets the properties that will be associated with the feature.withProperty
(String name, Object value) Sets the property that will be associated with the feature.withStyles
(Style... styles) SeeaddStyles(Style...)
.Methods inherited from class io.jmix.mapsflowui.kit.component.model.feature.Feature
getProperties, getStyles, getType, removeAllProperties, removeAllStyles, removeProperty, removeStyles
Methods inherited from class io.jmix.mapsflowui.kit.component.model.MapObservableObject
addChild, addListener, clearRemovedChildren, clearRemovedChildrenInDepth, equals, fireChangeEvent, getChildren, getEventBus, getMetaProperties, getRemovedChildren, getSyncId, hashCode, isDirty, isDirtyInDepth, markAsDirty, markAsDirtyInDepth, removeChild, setMapObjectChangeListener, setMetaProperty, setParent, unmarkDirtyInDepth
-
Constructor Details
-
LineStringFeature
public LineStringFeature(org.locationtech.jts.geom.LineString lineString)
-
-
Method Details
-
getGeometry
- Overrides:
getGeometry
in classFeature
- Returns:
- feature's geometry
-
getLineString
public org.locationtech.jts.geom.LineString getLineString()- Returns:
- linestring from feature's geometry
getGeometry()
-
setLineString
public void setLineString(org.locationtech.jts.geom.LineString lineString) Sets linestring to the feature's geometry.- Parameters:
lineString
- linestring to set
-
addStyles
Adds style to the feature. Note, if the feature contains custom styles, the default styles or added ones to the layer won't be applied to this feature. And you have to provide fully described style to the specific feature.For instance, custom linestring style:
new LineStringFeature(lineString) .withStyles(new LineStringStyle() .withStroke(new Stroke() .withWidth(3.0) .withColor("#F60018")) .build());
-
withStyles
SeeaddStyles(Style...)
.- Overrides:
withStyles
in classFeature
- Parameters:
styles
- styles to add- Returns:
- current instance
-
withProperties
Description copied from class:Feature
Sets the properties that will be associated with the feature.For instance, if cluster specified weight property it will try to get it from the feature's properties. The same with heatmap when it is specified its weight property.
Another example of using feature's properties is listening click events in source. For instance:
vectorSource.addSourceFeatureClickListener(event -> { Feature feature = event.getFeature(); String description = (String) feature.getProperties().get("description"); notifications.show(description); });
- Overrides:
withProperties
in classFeature
- Parameters:
properties
- properties to set- Returns:
- current instance
-
withProperty
Description copied from class:Feature
Sets the property that will be associated with the feature.For instance, if cluster specified weight property it will try to get it from the feature's properties. The same with heatmap when it is specified its weight property.
Another example of using feature's properties is listening click events in source. For instance:
vectorSource.addSourceFeatureClickListener(event -> { Feature feature = event.getFeature(); String description = (String) feature.getProperties().get("description"); notifications.show(description); });
- Overrides:
withProperty
in classFeature
- Parameters:
name
- property namevalue
- value- Returns:
- current instance
-
addClickListener
public com.vaadin.flow.shared.Registration addClickListener(Consumer<FeatureClickNotifier.FeatureClickEvent<LineStringFeature>> listener) Description copied from interface:FeatureClickNotifier
Adds feature click listener. Note, if the user makes double click on a feature, theFeatureClickNotifier.FeatureClickEvent
will be fired twice.- Specified by:
addClickListener
in interfaceFeatureClickNotifier<LineStringFeature>
- Parameters:
listener
- listener to add- Returns:
- a registration object for removing an event listener
-
addSingleClickListener
public com.vaadin.flow.shared.Registration addSingleClickListener(Consumer<FeatureClickNotifier.FeatureSingleClickEvent<LineStringFeature>> listener) Description copied from interface:FeatureClickNotifier
Adds feature single click listener. Single click means that an event won't be fired if the user makes double click.- Specified by:
addSingleClickListener
in interfaceFeatureClickNotifier<LineStringFeature>
- Parameters:
listener
- listener to add- Returns:
- a registration object for removing an event listener
-
addDoubleClickListener
public com.vaadin.flow.shared.Registration addDoubleClickListener(Consumer<FeatureClickNotifier.FeatureDoubleClickEvent<LineStringFeature>> listener) Description copied from interface:FeatureClickNotifier
Adds feature double click listener.- Specified by:
addDoubleClickListener
in interfaceFeatureClickNotifier<LineStringFeature>
- Parameters:
listener
- listener to add- Returns:
- a registration object for removing an event listener
-