Skip to content

Instantly share code, notes, and snippets.

View petrsimek's full-sized avatar

Petr Šimek petrsimek

View GitHub Profile
public java.lang.String toString() {
#if ( $members.size() > 0 )
#set ( $i = 0 )
return "$classname{"
+ #foreach( $member in $members )
#if ( $i == 0 )
"##
#else
", ##
#end
@petrsimek
petrsimek / gist:5956414
Created July 9, 2013 10:38
Geografický střed České republiky jako LatLng (Android Maps API) Geographic center of the Czech Republic as LatLng
/**
* source: http://www.astro.cz/clanek/?id=1647
*/
final static LatLng GEOGRAFIC_CENTER_OF_THE_CZECH_REPUBLIC = new LatLng(49.743748, 15.338637);