org.jdesktop.swingx.mapviewer.DefaultTileFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxmapviewer2 Show documentation
Show all versions of jxmapviewer2 Show documentation
This project is based on the JXMapViewer component of SwingX-WS.
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);
}
}