如何从Gmapsfx中的marker中获取LatLong

时间:2017-02-17 12:55:35

标签: java google-maps javafx

我对谷歌地图有疑问。 我在javafx项目中使用GmapsFX,并使用以下代码从源到目的地:

directionsService = new DirectionsService();
    directionsPane = mapComponent.getDirec();
    directionsService = new DirectionsService();
    directionsPane = mapComponent.getDirec();
    DirectionsRequest request = new DirectionsRequest(citySource.getText(), cityDestination.getText(), TravelModes.DRIVING);

    directionsService.getRoute(request, this, new DirectionsRenderer(true, mapComponent.getMap(), directionsPane));

我现在想要的是从Google地图中的两个标记中获取经度和纬度,以便有人可以帮助我吗?

0 个答案:

没有答案