在Android中添加图层的方法,一般来说是定义一个overlay对象,比如说属于MyOverlay类,MyOverlay是继承于ItemizedOverlay<Item>的,然后定义一个overlayitem,继承于OverLayItem,在使用的时候就是新建一个overlayitem对象,overlayitem =new overlayitem (GeoPoint point, String directiondir, String routetag),point包含了这个点的经纬度,后面两个数据就是你在点击这个点的时候可以显示的数据,当然至于你想怎么显示就看每个人不同的想法了。overlay在定义的时候会传入一个图片参数,以便显示,然后就是把overlayitem对象加到overlay中,在点击图片的时候会调用MyOverlay中的OnTop方法。至于我们要显示的两个信息,就是overlayitem对象中的后两个参数,我们可以根据点击时得到的index来创建一个item,然后调用item的gettitle getsnippet方法来获得两个参数。
下面是添加自定义图层,不是简单的显示一个图标,但是这次这个也只是一个框架,还没完全实现
这里有这么一个关系,BusOverlay继承于BalloonItemizedOverlay<BusOverlayItem>,这个又继承于ItemizedOverlay<Item>,对于BusOverlayItem,它继承与OverlayItem,首先
BusOverlay BusOverlay = new BusOverlay(drawable, this, stoptagList,mapView,density,style); BusOverlayItem overlayitem = new BusOverlayItem(point,"测试数据","测试数据"); BusOverlay.addOverlay(overlayitem);
简单的写下创建两个对象,然后将这个BusOverlayItem传递到BusOverlay中。刚才说到BusOverlayItem的后面两个参数是点击时显示数据的地发,这里为什么用测试数据呢,我们待会再说。然后我们进入OnTop方法,在点击图层的时候,
boolean ret=BusOverlay.super.onTap(index);
我们先返回他父类的OnTop方法,这里我们要显示的弹出框用的是FrameLayout类型的对象,FrameLayout就是可以显示弹出框的那种样式的嘛,我们新建一个BalloonoverLayView <Item extends OverlayItem>,继承与FrameLayout,再创建一个BusPopupView,这个类的对象就是我们要显示的框实体。
protected BalloonoverLayView<Item> balloonView;//矩形提示框
在OnTop方法中,如果这个类对象是空的话,我们就去创建这样的一个实体。
if (balloonView == null) balloonView = createBalloonOverlayView();
在creatBalloonOverlayView方法中我们新建
BusPopupView view = new BusPopupView(getMapView().getContext(),getBalloonBottomOffset(),density,sb);
参数我们先不管,这个类必然会调用BalloonoverLayView<Item>的构造函数,
在BalloonoverLayView<Item>的构造函数中,
protected LinearLayout layout; private TextView title; private TextView snippet; protected View layoutView; protected float density; private StringBuffer sb; public BalloonoverLayView(Context context, int balloonBottomOffset,float density,StringBuffer sb) { super(context); this.density = density; this.sb=sb; setPadding(10, 0, 10, balloonBottomOffset);//设置位置 layout = new LinearLayout(context); layout.setVisibility(VISIBLE); LayoutInflater inflater = (LayoutInflater) context .getSystemService(Context.LAYOUT_INFLATER_SERVICE); //这一步先加载了弹出框的布局 layoutView = inflater.inflate(R.layout.balloon_map_overlay, layout); //弹出框中的两行信息,可见R.id.balloon_item_title框图中 title = (TextView) layoutView.findViewById(R.id.balloon_item_title); snippet = (TextView) layoutView.findViewById(R.id.balloon_item_snippet); System.out.println("布局加载都好了"); }