/* * DefaultTileFactory.java * * Created on June 27, 2006, 2:20 PM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package org.jdesktop.swingx.mapviewer; /** * A tile factory which configures itself using a TileFactoryInfo object and uses a Google Maps like mercator * projection. * @author joshy */ public class DefaultTileFactory extends AbstractTileFactory { /** * Creates a new instance of DefaultTileFactory using the spcified TileFactoryInfo * @param info a TileFactoryInfo to configure this TileFactory */ public DefaultTileFactory(TileFactoryInfo info) { super(info); } }