Package org.wicketstuff.examples.gmap.both

Source Code of org.wicketstuff.examples.gmap.both.HomePage

package org.wicketstuff.examples.gmap.both;

import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.model.PropertyModel;
import org.wicketstuff.examples.gmap.WicketExamplePage;
import org.wicketstuff.gmap.GMap;
import org.wicketstuff.gmap.GMap.SetMapTypeBehavior;
import org.wicketstuff.gmap.api.GMapType;
import org.wicketstuff.gmap.event.MapTypeChangedListener;

/**
* Demonstrates the how to listen to a events fired by the map and
* how to control the map.
*/
public class HomePage extends WicketExamplePage
{

    private static final long serialVersionUID = 1L;
    private final GMap map;
    private final Label mapTypeLabel;

    public HomePage()
    {
        map = new GMap("panel");
        add(map);
        map.add(new MapTypeChangedListener()
        {
            private static final long serialVersionUID = 1L;

            @Override
            protected void onMapTypeChanged(AjaxRequestTarget target)
            {
                target.add(mapTypeLabel);
            }
        });
        mapTypeLabel = new Label("switchLabel", new PropertyModel<GMapType>(map, "mapType"));
        mapTypeLabel.add(map.new SetMapTypeBehavior("onclick", GMapType.HYBRID));
        mapTypeLabel.setOutputMarkupId(true);
        add(mapTypeLabel);
    }
}
TOP

Related Classes of org.wicketstuff.examples.gmap.both.HomePage

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.