]> git.argeo.org Git - gpl/argeo-suite.git/blob - org.argeo.app.geo/src/org/argeo/app/geo/ux/MapPart.java
Remove legacy map overview
[gpl/argeo-suite.git] / org.argeo.app.geo / src / org / argeo / app / geo / ux / MapPart.java
1 package org.argeo.app.geo.ux;
2
3 /** An UX part displaying a map. */
4 public interface MapPart {
5 void setCenter(double lng, double lat);
6
7 /** Event when a feature has been single-clicked. */
8 record FeatureSingleClickEvent(String path) {
9 };
10
11 /** Event when a feature has been selected. */
12 record FeatureSelectedEvent(String path) {
13 };
14
15 /** Event when a feature popup is requested. */
16 record FeaturePopupEvent(String path) {
17 };
18 }