In my map application, I am displaying a set of overlays on a map. Whenever I tap on an overlay I need to display a popup, like this
Yes it is possible you should design our self info window for display information over tap in map i am supply code to you if you are understand that please replay me.
public class MapLocationOverlay extends Overlay {
private boolean isNameAddHold=true;
private Bitmap bitmap,bitCross,bitMoreInformation;
int testX,testY,count=0;
int infoWindowOffsetX,infoWindowOffsetY;
public String name,address,argName,argAddress,argid;
// Store these as global instances so we don't keep reloading every time
private Bitmap bubbleIcon, shadowIcon;
private MapLocationViewer mapLocationViewer;
double toLat, toLng;
private Paint innerPaint, borderPaint, textPaint;
private boolean isRemovePriorPopup=false;
private boolean temp=true,first=true, firstDraw = true;
public boolean tempDefaule=true;
public MoreInformation myMoreInformation;
public PantryLocation location;
// The currently selected Map Location...if any is selected. This tracks whether an information
// window should be displayed & where...i.e. whether a user 'clicked' on a known map location
private PantryLocation selectedMapLocation;
public MapLocationOverlay(MapLocationViewer mapLocationViewer,PantryLocation arglocation) {
this.mapLocationViewer = mapLocationViewer;
location=arglocation;
bubbleIcon = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.bubble);
shadowIcon = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.shadow);
bitmap = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.infowindow);
bitCross = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.crass);
bitMoreInformation = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.more_informations_new);
}
@Override
public boolean onTouchEvent(MotionEvent e, MapView mapView) {
// TODO Auto-generated method stub
if (e.getAction() == 0)
{
this.tempDefaule=false;
}
if (e.getAction() == 1)
{
this.tempDefaule=false;
}
if (e.getAction() == 2)
{
this.tempDefaule=false;
}
return super.onTouchEvent(e, mapView);
}
@Override
public boolean onTap(GeoPoint p, MapView mapView) {
//this.tempDefaule=false;
// Store whether prior popup was displayed so we can call invalidate() & remove it if necessary.
// Next test whether a new popup should be displayed
selectedMapLocation = getHitMapLocation(mapView,p);
mapView.invalidate();
// Lastly return true if we handled this onTap()
return selectedMapLocation != null;
}
@Override
public void draw(Canvas canvas, MapView mapView, boolean shadow) {
drawMapLocations(canvas, mapView, shadow);
//this.tempDefaule=false;
drawInfoWindow(canvas, mapView, shadow);
//this.tempDefaule=false;
}
/**
* Test whether an information balloon should be displayed or a prior balloon hidden.
*/
private PantryLocation getHitMapLocation(MapView mapView, GeoPoint tapPoint) {
// Track which MapLocation was hit...if any
PantryLocation hitMapLocation = null;
RectF hitTestRecr = new RectF();
Point screenCoords = new Point();
ArrayList iterator =mapLocationViewer.getMapLocations();
for(int i=0;i iterator =mapLocationViewer.getMapLocations();
Point screenCoords = new Point();
for(i=0;i18)
name=selectedMapLocation.getName().substring(0,18)+"..";
argAddress=selectedMapLocation.getAddress();
address=selectedMapLocation.getAddress();
if(address.length()>30)
address=selectedMapLocation.getAddress().substring(0,30)+"..";
}
canvas.drawText(name,infoWindowOffsetX-45,infoWindowOffsetY-70,myPaintBlack);
myPaintBlack.setTextSize(13);
canvas.drawText(address,infoWindowOffsetX-45,infoWindowOffsetY-55,myPaintBlack);
// Draw inner info window
canvas.drawRoundRect(infoWindowRect, 5, 5, getInnerPaint());
// Draw border for info window
canvas.drawRoundRect(infoWindowRect, 5, 5, getBorderPaint());
// Draw the MapLocation's name
myPaintBlack.setColor(Color.CYAN);
myPaintBlack.setTextSize(11);
//canvas.drawText("Click for more info..",infoWindowOffsetX+105,infoWindowOffsetY-33,myPaintBlack);
canvas.drawBitmap(bitMoreInformation, infoWindowOffsetX+95, infoWindowOffsetY-45,getInnerPaint());
//canvas.drawBitmap(bitCross, infoWindowOffsetX+160, infoWindowOffsetY-90,getInnerPaint());
}
}
if(isRemovePriorPopup)
{
if(((testX>(infoWindowOffsetX+95)&&testX<(infoWindowOffsetX+195)))&&(testY>(infoWindowOffsetY-45)&&testY<(infoWindowOffsetY-25)))
{
if(temp){
try
{
temp=false;
isNameAddHold=false;
isRemovePriorPopup=false;
Context context=mapLocationViewer.cn;
Toast.makeText(context, "Loading...", Toast.LENGTH_SHORT).show();
Intent intent=new Intent(context, MoreInformation.class);
intent.putExtra("Id",argid);
intent.putExtra("Name",argName);
intent.putExtra("Address",argAddress);
intent.putExtra("Latitude",toLat);
intent.putExtra("Longitude",toLng);
context.startActivity(intent);
}
catch (Exception ex)
{
Log.d("Redirected Error :", ex.getMessage());
}
//canvas.drawText("This is for Testing",testX,testY,myPaintBlack);
}}
else if(((testX>(infoWindowOffsetX+160)&&testX<(infoWindowOffsetX+180)))&&(testY>(infoWindowOffsetY-90)&&testY<(infoWindowOffsetY-70)))
{
if(isRemovePriorPopup)
{
isRemovePriorPopup=false;
selectedMapLocation=null;
draw(canvas, mapView, shadow);
// mapLocationViewer.setDZoom();
}
}
}
}
public Paint getInnerPaint() {
if ( innerPaint == null) {
innerPaint = new Paint();
innerPaint.setARGB(225, 75, 75, 75); //gray
innerPaint.setAntiAlias(true);
}
return innerPaint;
}
public Paint getBorderPaint() {
if ( borderPaint == null) {
borderPaint = new Paint();
borderPaint.setARGB(255, 255, 255, 255);
borderPaint.setAntiAlias(true);
borderPaint.setStyle(Style.STROKE);
borderPaint.setStrokeWidth(2);
}
return borderPaint;
}
public Paint getTextPaint() {
if ( textPaint == null) {
textPaint = new Paint();
textPaint.setARGB(255, 255, 255, 255);
textPaint.setAntiAlias(true);
}
return textPaint;
}
}
In this code i have design a function draw infowindow