Package | Description |
---|---|
org.wicketstuff.examples.gmap.geocode | |
org.wicketstuff.gmap |
This package contains wicket gmap3 implementation.
|
org.wicketstuff.gmap.api | |
org.wicketstuff.gmap.event | |
org.wicketstuff.gmap.geocoder | |
org.wicketstuff.gmap.geocoder.pojos |
Modifier and Type | Method and Description |
---|---|
GLatLng |
ServerGeocoder.findAddress(String address) |
Modifier and Type | Method and Description |
---|---|
GLatLng |
GMap.getCenter() |
Modifier and Type | Method and Description |
---|---|
void |
GMap.panTo(GLatLng center)
Changes the center point of the map to the given point.
|
void |
GMap.setCenter(GLatLng center)
Set the center.
|
Modifier and Type | Method and Description |
---|---|
void |
GMap.fitMarkers(List<GLatLng> markersToShow) |
void |
GMap.fitMarkers(List<GLatLng> markersToShow,
boolean showMarkersForPoints) |
void |
GMap.fitMarkers(List<GLatLng> markersToShow,
boolean showMarkersForPoints,
double zoomAdjustment)
Makes the map zoom out and centre around all the GLatLng points in markersToShow.
|
Constructor and Description |
---|
GMap.SetCenterBehavior(String event,
GLatLng gLatLng) |
Modifier and Type | Method and Description |
---|---|
GLatLng |
GMarkerOptions.getLatLng() |
GLatLng |
GInfoWindow.getLatLng() |
GLatLng |
GMarker.getLatLng() |
GLatLng |
GLatLngBounds.getNE() |
GLatLng |
GLatLngBounds.getSW() |
static GLatLng |
GLatLng.parse(String value)
(37.34068368469045, -122.48519897460936)
|
Modifier and Type | Method and Description |
---|---|
abstract void |
GClientGeocoder.onGeoCode(org.apache.wicket.ajax.AjaxRequestTarget target,
GeocoderStatus status,
String address,
GLatLng latLng) |
void |
GMarkerOptions.setLatLng(GLatLng latLng) |
void |
GInfoWindow.setLatLng(GLatLng latLng) |
Constructor and Description |
---|
GCircle(GLatLng center,
double radius,
String strokeColor,
int strokeWeight,
float strokeOpacity,
String fillColor,
float fillOpacity) |
GInfoWindow(GLatLng latLng,
org.apache.wicket.Component content)
Constructor.
|
GInfoWindow(GLatLng latLng,
String content)
Constructor.
|
GLatLngBounds(GLatLng sw,
GLatLng ne)
Construct.
|
GMarkerOptions(GMap gmap,
GLatLng latLng) |
GMarkerOptions(GMap gmap,
GLatLng latLng,
String title) |
GMarkerOptions(GMap gmap,
GLatLng latLng,
String title,
GIcon icon) |
GPolygon(String strokeColor,
int strokeWeight,
float strokeOpacity,
String fillColor,
float fillOpacity,
GLatLng... gLatLngs) |
GPolyline(String color,
int weight,
float opacity,
GLatLng... gLatLngs) |
Modifier and Type | Method and Description |
---|---|
protected abstract void |
ClickListener.onClick(org.apache.wicket.ajax.AjaxRequestTarget target,
GLatLng latLng)
Override this method to provide handling of a click on the map.
|
protected abstract void |
DblClickListener.onDblClick(org.apache.wicket.ajax.AjaxRequestTarget target,
GLatLng latLng)
Override this method to provide handling of a double-click on the map.
|
Modifier and Type | Method and Description |
---|---|
GLatLng |
Geocoder.decode(String response)
Decode an response of an geocoder request to POJOs.
Following the successful mapping from JSON to POJO all hits are available in Geocoder.geocoderResult |
GLatLng |
Geocoder.geocode(String address)
Invoke a geocoder request to the GoogleMaps API.
Only return the first element of Geocoder.geocoderResult to be backward compatible.After succeful call of Geocoder.geocode(String) you can get all results from
Geocoder.geocoderResult |
Modifier and Type | Method and Description |
---|---|
GLatLng |
GeocoderGeometry.getLocation() |
GLatLng |
NortheastSoutwestInfo.getNortheast() |
GLatLng |
NortheastSoutwestInfo.getSouthwest() |
Modifier and Type | Method and Description |
---|---|
void |
GeocoderGeometry.setLocation(GLatLng location) |
void |
NortheastSoutwestInfo.setNortheast(GLatLng northeast) |
void |
NortheastSoutwestInfo.setSouthwest(GLatLng southwest) |
Copyright © 2015. All rights reserved.