Examples of GMapIcon


Examples of com.google.code.jqwicket.ui.gmap.GMapIcon

            .scrollwheel(false)
            .markers(
                new GMapMarker()
                    .latitude(47.670553f)
                    .longitude(9.588479f)
                    .icon(new GMapIcon()
                        .image("_images/gmap/gmap_pin_orange.png")
                        .iconsize(26, 46)
                        .iconanchor(12, 46)
                        .infowindowanchor(12, 0)),
                new GMapMarker().latitude(47.65197522925437f)
                    .longitude(9.47845458984375f),
                new GMapMarker()
                    .latitude(47.594996f)
                    .longitude(9.600708f)
                    .icon(new GMapIcon()
                        .image("_images/gmap/gmap_pin_grey.png")
                        .iconsize(26, 46)
                        .iconanchor(12, 46)
                        .infowindowanchor(12, 0))

            )
            .icon(new GMapIcon().image("_images/gmap/gmap_pin.png")
                .iconsize(26, 46).iconanchor(12, 46)
                .infowindowanchor(12, 0)).latitude(47.58969f)
            .longitude(9.473413f).zoom(10)));

    add(new GMapWebMarkupContainer("map4", new GMapOptions(key).markers(
View Full Code Here
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.