All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.common.geometry.WebMercatorTile Maven / Gradle / Ivy

package org.opentripplanner.common.geometry;

import org.geotools.geometry.Envelope2D;
import org.geotools.referencing.crs.DefaultGeographicCRS;

/* http://wiki.openstreetmap.org/wiki/Slippy_map_tilenames */
public class WebMercatorTile {

    public static String getTileNumber(final double lat, final double lon, final int zoom) {
        int xtile = (int)Math.floor( (lon + 180) / 360 * (1<




© 2015 - 2024 Weber Informatics LLC | Privacy Policy