Back to project page Android_Yellow_Pages_App_TDD.
The source code is released under:
Apache License
If you think the Android project Android_Yellow_Pages_App_TDD 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.tddrampup.factories; // w ww .j a v a 2 s .c om import com.google.android.gms.maps.model.LatLng; import com.google.android.gms.maps.model.MarkerOptions; /** * Created by WX009-PC on 2/25/14. */ public class MarkerOptionsFactoryWrapper implements MarkerOptionsFactoryWrapperInterface { @Override public MarkerOptions getOptions(String name, LatLng latLng) { return new MarkerOptions() .position(latLng) .title(name); } }