1.3.1 • Published 1 year ago

@polar/plugin-pins v1.3.1

Weekly downloads
-
License
EUPL-1.2
Repository
github
Last release
1 year ago

Pins

Scope

The pins plugin handles marking locations. Embedding processes can then use that coordinate for further steps. The plugin may react to other plugins, especially address searches.

Extension ideas

  • Allow multiple pins

Configuration

The usage of displayComponent has no influence on the creation of Pins on the Map if this plugin is being used.

pins

fieldNametypedescription
toZoomLevelnumberZoom level to use on outside input by e.g. address search.
movableboolean? | 'drag' | 'click' | 'none'Whether a user may drag and re-click the pin (drag or true), only re-click it (click) or may only be placed programmatically (none or false). Defaults to 'none'. Using a boolean for this configuration has been deprecated and will be removed in the next major release.
appearOnClickappearOnClickPin restrictions. See object description below.
coordinateSourcestringThe pins plugin may react to changes in other plugins. This specifies the path to such store positions. The position must, when subscribed to, return a GeoJSON feature. Please mind that, when referencing another plugin, that plugin must be in addPlugins before this one.
stylestyle?Display style configuration.
initialnumber[]?Configuration options for setting an initial pin.
boundaryLayerIdstring?Id of a vector layer to restrict pins to. When pins are moved or created outside of the boundary, an information will be shown and the pin is reset to its previous state. The map will wait at most 10s for the layer to load; should it not happen, the geolocation feature is turned off.
boundaryOnError('strict' | 'permissive')?If the boundary layer check does not work due to loading or configuration errors, style 'strict' will disable the pins feature, and style 'permissive' will act as if no boundaryLayerId was set. Defaults to 'permissive'.
toastActionstring?If boundaryLayerId is set, and the pin is moved or created outside the boundary, this string will be used as action to send a toast information to the user. If no toast information is desired, leave this field undefined; for testing purposes, you can still find information in the console.

pins.appearOnClick

fieldNametypedescription
showbooleanDisplay marker.
atZoomLevelnumber?Minimum zoom level for sensible marking.

pins.initial

fieldNametypedescription
coordinatesnumber[]Coordinate pair for the pin.
centerOnboolean?If set to true, center on and zoom to the given coordinates on start. Defaults to false.
epsgstring?Coordinate reference system in which the given coordinates are encoded. Defaults to the epsg value defined in the mapConfiguration.

pins.style

fieldNametypedescription
fillstring?Fill color of the pin. Defaults to blue (#005CA9).
strokestring?Stroke (that is, border) color of the pin. Defaults to white (#FFFFFF).

Store

State

map.subscribe('plugin/pins/transformedCoordinate', (pinCoordinate) => {
  /* Your Code. */
})

The pinCoordinate is of type [number, number].

map.subscribe('plugin/pins/latLon', (pinCoordinate) => {
  /* Your Code. */
})

The pinCoordinate transcribed to latitude / longitude.

1.3.1

1 year ago

2.0.0-alpha.3

1 year ago

2.0.0-alpha.2

1 year ago

2.0.0-alpha.1

1 year ago

1.3.0

1 year ago

1.2.0

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago