Class MultiPointFeature

All Implemented Interfaces:
FeatureClickNotifier<MultiPointFeature>, Serializable

public class MultiPointFeature extends Feature implements FeatureClickNotifier<MultiPointFeature>
Multipoint feature with predefined MultiPointGeometry. It is displayed as points with default style.

Usage example:

 private void addMultiPoint(VectorSource vectorSource) {
     GeometryFactory factory = GeometryUtils.getGeometryFactory();

     MultiPoint multiPoint = factory.createMultiPoint(new Point[]{
             GeometryUtils.createPoint(2.348582286131592, 48.84306719072006),
             GeometryUtils.createPoint(-0.1503049900024013, 51.54906255948154)});

     vectorSource.addFeature(new MultiPointFeature(multiPoint));
 }
 
See Also:
  • Constructor Details

    • MultiPointFeature

      public MultiPointFeature(org.locationtech.jts.geom.MultiPoint multiPoint)
  • Method Details

    • getGeometry

      public MultiPointGeometry getGeometry()
      Overrides:
      getGeometry in class Feature
      Returns:
      feature's geometry
    • getMultiPoint

      public org.locationtech.jts.geom.MultiPoint getMultiPoint()
      Returns:
      multipoint from feature's geometry getGeometry()
    • setMultiPoint

      public void setMultiPoint(org.locationtech.jts.geom.MultiPoint multiPoint)
      Sets multipoint to the feature's geometry.
      Parameters:
      multiPoint - multipoint to set
    • addStyles

      public void addStyles(Style... styles)
      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 point styles:
       new MultiPointFeature(multiPoint)
               .withStyles(new PointStyle()
                       .withImage(new CircleStyle()
                               .withRadius(7)
                               .withFill(new Fill("#E7003E"))
                               .withStroke(new Stroke()
                                       .withWidth(2.0)
                                       .withColor("#710067")))
                       .build());
       
      Overrides:
      addStyles in class Feature
      Parameters:
      styles - styles to add
    • withStyles

      public MultiPointFeature withStyles(Style... styles)
      Overrides:
      withStyles in class Feature
      Parameters:
      styles - styles to add
      Returns:
      current instance
    • withProperties

      public MultiPointFeature withProperties(Map<String,Object> properties)
      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 class Feature
      Parameters:
      properties - properties to set
      Returns:
      current instance
    • withProperty

      public MultiPointFeature withProperty(String name, Object value)
      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 class Feature
      Parameters:
      name - property name
      value - value
      Returns:
      current instance
    • addClickListener

      public com.vaadin.flow.shared.Registration addClickListener(Consumer<FeatureClickNotifier.FeatureClickEvent<MultiPointFeature>> listener)
      Description copied from interface: FeatureClickNotifier
      Adds feature click listener. Note, if the user makes double click on a feature, the FeatureClickNotifier.FeatureClickEvent will be fired twice.
      Specified by:
      addClickListener in interface FeatureClickNotifier<MultiPointFeature>
      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<MultiPointFeature>> 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 interface FeatureClickNotifier<MultiPointFeature>
      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<MultiPointFeature>> listener)
      Description copied from interface: FeatureClickNotifier
      Adds feature double click listener.
      Specified by:
      addDoubleClickListener in interface FeatureClickNotifier<MultiPointFeature>
      Parameters:
      listener - listener to add
      Returns:
      a registration object for removing an event listener