Back to project page CartoCache.
The source code is released under:
Apache License
If you think the Android project CartoCache listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.codeandmagic.cartocache; //w ww . ja v a 2 s .c om /** * Created by evelyne24. */ public class QTileDrawConfig { public final int fillColor; public final int strokeColor; public final int strokeWidth; public QTileDrawConfig(int fillColor, int strokeColor, int strokeWidth) { this.fillColor = fillColor; this.strokeColor = strokeColor; this.strokeWidth = strokeWidth; } }