web-js: testing geojson

This commit is contained in:
Hannes Janetzek
2014-03-30 20:26:10 +02:00
parent de27227ed7
commit e8aa7d55bd
5 changed files with 48 additions and 37 deletions

View File

@@ -0,0 +1,21 @@
package org.oscim.web.js;
import org.oscim.layers.tile.vector.VectorTileLayer;
import org.oscim.map.Map;
import org.oscim.theme.IRenderTheme;
import org.oscim.tiling.TileSource;
import org.timepedia.exporter.client.ExportOverlay;
import org.timepedia.exporter.client.ExportPackage;
@ExportPackage("vtm")
public class JsVectorTileLayer implements ExportOverlay<VectorTileLayer> {
public JsVectorTileLayer(Map map, TileSource tileSource) {
}
public boolean setTileSource(TileSource tileSource) {
return false;
}
public void setRenderTheme(IRenderTheme theme) {
}
}