org.opentripplanner.common.OsmUrlGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.common;
import org.locationtech.jts.geom.Coordinate;
public class OsmUrlGenerator {
public static String fromCoordinate(Coordinate c) {
return fromCoordinate(c, 19);
}
public static String fromCoordinate(Coordinate c, int zoom) {
var lat = c.y;
var lon = c.x;
return "https://www.openstreetmap.org/?mlat=%s&mlon=%s#map=%s/%s/%s".formatted(
lat,
lon,
zoom,
lat,
lon
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy