Back to project page android-open-street-map.
The source code is released under:
Apache License
If you think the Android project android-open-street-map 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.android.lib.map.osm.overlay; //w w w . j ava 2s . co m import android.view.MotionEvent; import android.view.View; public abstract class OsmOverlay { public void draw(android.graphics.Canvas canvas, View view) { } public void onZoomLevelChanges(View view) { } public boolean onSingleTap(final MotionEvent event, View view) { return false; } public boolean onInterceptSingleTap(final MotionEvent event, View view) { return false; } }