Skip to content

Commit

Permalink
experiments with openstreetmap
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4479 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Feb 12, 2008
1 parent 00f5f91 commit a10f271
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions htroot/osm.java
@@ -0,0 +1,27 @@
import java.io.IOException;

import de.anomic.http.httpHeader;
import de.anomic.server.serverObjects;
import de.anomic.server.serverSwitch;
import de.anomic.ymage.ymageMatrix;
import de.anomic.ymage.ymageOSM;

public class osm {

public static ymageMatrix respond(httpHeader header, serverObjects post, serverSwitch env) throws IOException {

int zoom = 10;
double lat = 47.968056d;
double lon = 7.909167d;

if (post != null) {
zoom = post.getInt("zoom", zoom);
lat = post.getDouble("lat", lat);
lon = post.getDouble("lon", lon);
}

ymageOSM.tileCoordinates coord = new ymageOSM.tileCoordinates(lat, lon, zoom);
return ymageOSM.getCombinedTiles(coord);
}

}

0 comments on commit a10f271

Please sign in to comment.