001// License: GPL. For details, see Readme.txt file. 002package org.openstreetmap.gui.jmapviewer.interfaces; 003 004import java.util.Map; 005 006/** 007 * Interface for template tile sources, @see TemplatedTMSTileSource 008 * 009 * @author Wiktor Niesiobędzki 010 * @since 1.10 011 */ 012public interface TemplatedTileSource extends TileSource { 013 /** 014 * 015 * @return headers to be sent with http requests 016 */ 017 Map<String, String> getHeaders(); 018}