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

org.jdesktop.swingx.mapviewer.DefaultTileFactory Maven / Gradle / Ivy

The newest version!
/*
 * 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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy