gpt4 book ai didi

android - 在 Gluon map 上显示工具提示 onclick MapPoint

转载 作者:行者123 更新时间:2023-11-29 19:04:25 29 4
gpt4 key购买 nike

是否可以在 map 点执行onclick() 时显示弹出窗口,并且当您正确更改缩放位置时,有人成功了吗?使用的库是 gluon maps

我想在单击 map 点时显示工具提示,当我更改缩放比例时, map 点会移动到正确的位置,在示例中,它在缩放时不会定位。

MapPoint point = candidate.getKey();
Node icon = candidate.getValue();
Point2D mapPoint = baseMap.getMapPoint(point.getLatitude(), point.getLongitude());
icon.setVisible(true);
icon.setTranslateX(mapPoint.getX());
icon.setTranslateY(mapPoint.getY());
final Tooltip tp=new Tooltip();
icon.setOnMouseClicked(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent t) {
tp.setText("Pruebas");
com.sun.glass.ui.Robot robot = com.sun.glass.ui.Application
.GetApplication().createRobot();
tp.show(icon, robot.getMouseX() + 10,
robot.getMouseY() + 10);
}
});
icon.setOnMouseExited(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent t) {

//tp.hide();
}
});

像点一样改变位置工具提示是否可行,缩放时改变位置点?有人试过吗?

最佳答案

由于您在 Gluon Map 的演示中引用了 PoiLayerpackage ,您可以轻松地将其修改为:

  • 当您点击 map 的一个位置时相应地更新图标位置,而不需要缩放更新。

  • 在您的图标上显示工具提示。

只需将此方法添加到 PoiLayer 即可将给定点更新为新的 latlon 坐标:

public void updatePoint(MapPoint p, double lat, double lon) {
for (Pair<MapPoint, Node> candidate : points) {
MapPoint point = candidate.getKey();
if (point.equals(p)) {
p.update(lat, lon);
markDirty();
break;
}
}
}

请注意对 markDirty() 的调用,这将强制进行布局传递并更新图标位置。

如果向图标添加 Tooltip,则无需注意更新其位置:

private MapPoint mapPointIcon;

private PoiLayer createDemoLayer() {
PoiLayer answer = new PoiLayer();
Node icon = new Circle(7, Color.BLUE);
Tooltip.install(icon, new Tooltip("Pruebas"));
mapPointIcon = new MapPoint(40.4, -3.7);
answer.addPoint(mapPointIcon, icon);

return answer;
}

唯一缺少的部分是从场景中获取纬度和经度坐标。这question涵盖了这一点。

所以基于它,你可以在PoiLayer类中添加这个方法:

public MapPoint getMapPosition(double x, double y) {
double z = baseMap.zoom().get();
double latrad = Math.PI - (2 * Math.PI * (y - baseMap.getTranslateY())) / (Math.pow(2, z) * 256.0);
double mlat = Math.toDegrees(Math.atan(Math.sinh(latrad)));
double mlon = (x - this.baseMap.getTranslateX()) / (256.0 * Math.pow(2, z)) * 360.0 - 180.0;
return new MapPoint(mlat, mlon);
}

最后,为您的 View 添加一个监听器:

@Override
public void start(Stage stage) throws Exception {
MapView view = new MapView();
PoiLayer myDemoLayer = createDemoLayer();
view.setZoom(4);
view.addLayer(myDemoLayer);
Scene scene = new Scene(view, 600, 700);
stage.setScene(scene);
stage.show();

view.flyTo(0, mapPointIcon, 1.);

view.setOnMouseClicked(e -> {
MapPoint position = myDemoLayer.getMapPosition(e.getX(), e.getY());
myDemoLayer.updatePoint(mapPointIcon, position.getLatitude(), position.getLongitude());
});
}

这很好用,但是如果您有一个包含多个点的层,您将需要一种方法来选择要移动的点。

编辑

基于具有永久弹出窗口而不是工具提示的 OP 请求,这是一个非常简单的弹出窗口实现。如需更好的解决方案,ControlsFX推荐使用 PopOver 控件。

这可以添加到 PoiLayer 类中:

public void addPoint(MapPoint p, Node icon) {
final Pair<MapPoint, Node> pair = new Pair(p, icon);
icon.setOnMouseClicked(e -> {
e.consume();
showPopup(pair);
});
points.add(pair);
this.getChildren().add(icon);
this.markDirty();
}

private void showPopup(Pair<MapPoint, Node> pair) {
Node icon = pair.getValue();
MapPoint point = pair.getKey();
final Stage primaryStage = (Stage) icon.getScene().getWindow();
final Stage popupStage = new Stage();
popupStage.initStyle(StageStyle.UNDECORATED);
popupStage.initModality(Modality.APPLICATION_MODAL);
popupStage.initOwner(primaryStage);

VBox box = new VBox(5);
box.setPadding(new Insets(5));
box.getChildren().addAll(new Label("Popup"),
new Label("Lat: " + String.format("%2.6fº", point.getLatitude())),
new Label("Lon: " + String.format("%2.6fº", point.getLongitude())));
Label close = new Label("X");
close.setOnMouseClicked(a -> popupStage.close());

StackPane.setAlignment(close, Pos.TOP_RIGHT);
final StackPane stackPane = new StackPane(box, close);
stackPane.setPadding(new Insets(5));
stackPane.setStyle("-fx-background-color: lightgreen;");

Scene scene = new Scene(stackPane, 150, 100);
Bounds iconBounds = icon.localToScene(icon.getBoundsInLocal());
popupStage.setX(primaryStage.getX() + primaryStage.getScene().getX() + iconBounds.getMaxX() );
popupStage.setY(primaryStage.getY() + primaryStage.getScene().getY() + iconBounds.getMaxY());
popupStage.setScene(scene);
popupStage.show();
}

无论何时单击该图标,都会出现一个模式弹出窗口(您需要在返回 map 之前将其关闭)。当然,这可以更改为具有非模态和可自动关闭的弹出窗口。

Custom Popup

关于android - 在 Gluon map 上显示工具提示 onclick MapPoint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47790024/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com