Directory

← Back

Geo Location Addon - Vaadin 14

Geolocation addon for Vaadin 14

Author

Contributors

Rating

All the features are exposed:

  • 3D coordinates with precision
  • speed and heading
  • timing and precision settings
  • error handling

This addon is a fork of Ilia Motornyi's addon. It has been updated to Vaadin 14.

If you need it for Vaadin 10 to 13 or Vaadin 14 in compatibility mode, use this addon: https://vaadin.com/directory/component/geo-location-addon

Sample code

GeoLocation geoLocation = new GeoLocation();
geoLocation.setWatch(true);
geoLocation.setHighAccuracy(true);
geoLocation.setTimeout(100000);
geoLocation.setMaxAge(200000);
geoLocation.addValueChangeListener( e->{...});
geoLocation.addErrorListener( e->{...});
add(geoLocation);

Links

Compatibility

(Loading compatibility data...)

Was this helpful? Need more help?
Leave a comment or a question below. You can also join the chat on Discord or ask questions on StackOverflow.

Version

Remove the dependency from slf4j-simple

Released
2020-07-06
Maturity
EXPERIMENTAL
License
MIT License

Compatibility

Framework
Vaadin 14
Browser
N/A
Online