|
Follow us on GitHub |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of LatLng in com.google.gwt.maps.client |
---|
Methods in com.google.gwt.maps.client that return LatLng | |
---|---|
LatLng |
MapOptions.getCenter()
get LatLng |
LatLng |
MapWidget.getCenter()
get Center |
LatLng |
MapImpl.getCenter()
return map center in coordinates |
Methods in com.google.gwt.maps.client with parameters of type LatLng | |
---|---|
void |
MapWidget.panTo(LatLng latLng)
Changes the center of the map to the given LatLng. |
void |
MapImpl.panTo(LatLng latLng)
Changes the center of the map to the given LatLng. |
void |
MapOptions.setCenter(LatLng center)
set The initial Map center. |
void |
MapWidget.setCenter(LatLng latlng)
set center |
void |
MapImpl.setCenter(LatLng latlng)
set center |
Uses of LatLng in com.google.gwt.maps.client.base |
---|
Methods in com.google.gwt.maps.client.base that return LatLng | |
---|---|
LatLng |
LatLngBounds.getCenter()
Computes the center of this LatLngBounds |
LatLng |
LatLngBounds.getNorthEast()
Returns the north-east corner of this bounds. |
LatLng |
LatLngBounds.getSouthWest()
Returns the south-west corner of this bounds. |
static LatLng |
LatLng.newInstance(double lat,
double lng)
Notice the ordering of latitude and longitude. |
static LatLng |
LatLng.newInstance(double lat,
double lng,
boolean noWrap)
Notice the ordering of latitude and longitude. |
LatLng |
LatLngBounds.toSpan()
Converts the given map bounds to a lat/lng span. |
Methods in com.google.gwt.maps.client.base with parameters of type LatLng | |
---|---|
boolean |
LatLngBounds.contains(LatLng latlng)
Returns true if the given lat/lng is in this bounds. |
boolean |
LatLng.equals(LatLng other)
is equal? |
LatLngBounds |
LatLngBounds.extend(LatLng point)
Extends this bounds to contain the given point. |
static LatLngBounds |
LatLngBounds.newInstance(LatLng sw,
LatLng ne)
creates A LatLngBounds instance represents a rectangle in geographical coordinates, including one that crosses the 180 degrees longitudinal meridian. |
Uses of LatLng in com.google.gwt.maps.client.events |
---|
Methods in com.google.gwt.maps.client.events that return LatLng | |
---|---|
LatLng |
MouseEvent.getLatLng()
get lat lng |
Uses of LatLng in com.google.gwt.maps.client.events.fusiontablemouse |
---|
Methods in com.google.gwt.maps.client.events.fusiontablemouse that return LatLng | |
---|---|
LatLng |
FusionTablesMouseMapEvent.getLatLng()
The position at which to anchor an infowindow on the clicked feature. |
Uses of LatLng in com.google.gwt.maps.client.events.kmlmouse |
---|
Methods in com.google.gwt.maps.client.events.kmlmouse that return LatLng | |
---|---|
LatLng |
KmlMouseMapEvent.getLatLng()
get The position at which to anchor an infowindow on the clicked feature. |
Uses of LatLng in com.google.gwt.maps.client.events.panoramiomouse |
---|
Methods in com.google.gwt.maps.client.events.panoramiomouse that return LatLng | |
---|---|
LatLng |
PanoramioMouseMapEvent.getLatLng()
The position at which to anchor an infowindow on the clicked feature. |
Uses of LatLng in com.google.gwt.maps.client.geometrylib |
---|
Methods in com.google.gwt.maps.client.geometrylib that return LatLng | |
---|---|
static LatLng |
SphericalUtils.computeOffset(LatLng from,
int distance,
int heading)
Computes the LatLng produced by starting from a given LatLng and heading a given distance. |
static LatLng |
SphericalUtils.computeOffset(LatLng from,
int distance,
int heading,
int radius)
Computes the LatLng produced by starting from a given LatLng and heading a given distance. |
static LatLng |
SphericalUtils.interpolate(LatLng from,
LatLng to,
double fraction)
Travels a fraction of the way from one LatLng to another LatLng. |
Methods in com.google.gwt.maps.client.geometrylib that return types with arguments of type LatLng | |
---|---|
static JsArray<LatLng> |
EncodingUtils.decodePath(String encodedPath)
Decodes an encoded path string into a sequence of LatLngs. |
Methods in com.google.gwt.maps.client.geometrylib with parameters of type LatLng | |
---|---|
static double |
SphericalUtils.computeDistanceBetween(LatLng from,
LatLng to)
Computes the distance between two LatLngs. |
static double |
SphericalUtils.computeDistanceBetween(LatLng from,
LatLng to,
int radius)
Computes the distance between two LatLngs. |
static double |
SphericalUtils.computeHeading(LatLng from,
LatLng to)
Computes the heading from one LatLng to another LatLng. |
static LatLng |
SphericalUtils.computeOffset(LatLng from,
int distance,
int heading)
Computes the LatLng produced by starting from a given LatLng and heading a given distance. |
static LatLng |
SphericalUtils.computeOffset(LatLng from,
int distance,
int heading,
int radius)
Computes the LatLng produced by starting from a given LatLng and heading a given distance. |
static LatLng |
SphericalUtils.interpolate(LatLng from,
LatLng to,
double fraction)
Travels a fraction of the way from one LatLng to another LatLng. |
Method parameters in com.google.gwt.maps.client.geometrylib with type arguments of type LatLng | |
---|---|
static double |
SphericalUtils.computeArea(JsArray<LatLng> loop)
Computes the area of the given loop. |
static double |
SphericalUtils.computeArea(JsArray<LatLng> loop,
int radius)
Computes the area of the given loop. |
static double |
SphericalUtils.computeArea(MVCArray<LatLng> loop)
Computes the area of the given loop. |
static double |
SphericalUtils.computeArea(MVCArray<LatLng> loop,
int radius)
Computes the area of the given loop. |
static double |
SphericalUtils.computeLength(JsArray<LatLng> path)
Computes the length of the given path. |
static double |
SphericalUtils.computeLength(JsArray<LatLng> path,
int radius)
Computes the length of the given path. |
static double |
SphericalUtils.computeLength(MVCArray<LatLng> path)
Computes the length of the given path. |
static double |
SphericalUtils.computeLength(MVCArray<LatLng> path,
int radius)
Computes the length of the given path. |
static double |
SphericalUtils.computeSignedArea(JsArray<LatLng> loop)
Computes the signed area of the given loop. |
static double |
SphericalUtils.computeSignedArea(JsArray<LatLng> loop,
int radius)
Computes the signed area of the given loop. |
static double |
SphericalUtils.computeSignedArea(MVCArray<LatLng> loop)
Computes the signed area of the given loop. |
static double |
SphericalUtils.computeSignedArea(MVCArray<LatLng> loop,
int radius)
Computes the signed area of the given loop. |
static String |
EncodingUtils.encodePath(JsArray<LatLng> path)
Encodes a sequence of LatLngs into an encoded path string. |
static String |
EncodingUtils.encodePath(MVCArray<LatLng> path)
Encodes a sequence of LatLngs into an encoded path string. |
Uses of LatLng in com.google.gwt.maps.client.maptypes |
---|
Methods in com.google.gwt.maps.client.maptypes with parameters of type LatLng | |
---|---|
Point |
Projection.fromLatLngToPoint(LatLng latlng,
Point point)
Translates from the LatLng cylinder to the Point plane. |
Uses of LatLng in com.google.gwt.maps.client.overlays |
---|
Methods in com.google.gwt.maps.client.overlays that return LatLng | |
---|---|
LatLng |
MapCanvasProjection.fromContainerPixelToLatLng(Point pixel)
Computes the geographical coordinates from pixel coordinates in the map's container. |
LatLng |
MapCanvasProjection.fromDivPixelToLatLng(Point pixel)
Computes the geographical coordinates from pixel coordinates in the div that holds the draggable map. |
LatLng |
CircleOptions.getCenter()
gets the center |
LatLng |
Circle.getCenter()
Returns the center of this circle. |
LatLng |
InfoWindow.getPosition()
get Position |
LatLng |
InfoWindowOptions.getPosition()
gets The LatLng at which to display this InfoWindow. |
LatLng |
Marker.getPosition()
get Position |
LatLng |
MarkerOptions.getPosition()
gets Marker position. |
Methods in com.google.gwt.maps.client.overlays that return types with arguments of type LatLng | |
---|---|
JsArray<LatLng> |
PolylineOptions.getPath_JsArray()
gets The ordered sequence of coordinates of the Polyline. |
MVCArray<LatLng> |
PolylineOptions.getPath_MVCArray()
gets The ordered sequence of coordinates of the Polyline. |
MVCArray<LatLng> |
Polyline.getPath()
Retrieves the first path. |
MVCArray<LatLng> |
Polygon.getPath()
Retrieves the first path. |
JsArray<LatLng> |
PolygonOptions.getPaths_JsArray()
|
MVCArray<LatLng> |
PolygonOptions.getPaths_MVCArray()
|
MVCArray<MVCArray<LatLng>> |
Polygon.getPaths()
Retrieves the paths for this polygon. |
JsArray<JsArray<LatLng>> |
PolygonOptions.getPathss_JsArray()
|
MVCArray<MVCArray<LatLng>> |
PolygonOptions.getPathss_MVCArray()
|
Methods in com.google.gwt.maps.client.overlays with parameters of type LatLng | |
---|---|
Point |
MapCanvasProjection.fromLatLngToContainerPixel(LatLng latlng)
Computes the pixel coordinates of the given geographical location in the DOM element the map's outer container. |
void |
MapCanvasProjection.fromLatLngToDivPixel(LatLng latlng)
Computes the pixel coordinates of the given geographical location in the DOM element that holds the draggable map. |
void |
CircleOptions.setCenter(LatLng center)
sets the center |
void |
InfoWindow.setPosition(LatLng position)
set Position |
void |
InfoWindowOptions.setPosition(LatLng position)
sets The LatLng at which to display this InfoWindow. |
void |
Marker.setPosition(LatLng latlng)
set Position |
void |
MarkerOptions.setPosition(LatLng position)
sets Marker position. |
Method parameters in com.google.gwt.maps.client.overlays with type arguments of type LatLng | |
---|---|
void |
PolylineOptions.setPath(JsArray<LatLng> path)
sets The ordered sequence of coordinates of the Polyline. |
void |
Polyline.setPath(JsArray<LatLng> path)
Sets the first path. |
void |
Polygon.setPath(JsArray<LatLng> path)
Sets the first path. |
void |
PolylineOptions.setPath(MVCArray<LatLng> path)
sets The ordered sequence of coordinates of the Polyline. |
void |
Polyline.setPath(MVCArray<LatLng> path)
Sets the first path. |
void |
Polygon.setPath(MVCArray<LatLng> path)
Sets the first path. |
void |
Polygon.setPaths(JsArray<LatLng> paths)
Sets the path for this polygon. |
void |
PolygonOptions.setPaths(JsArray<LatLng> paths)
The ordered sequence of coordinates that designates a closed loop. |
void |
Polygon.setPaths(MVCArray<LatLng> paths)
Sets the path for this polygon. |
void |
PolygonOptions.setPaths(MVCArray<LatLng> paths)
The ordered sequence of coordinates that designates a closed loop. |
void |
Polygon.setPathss(JsArray<JsArray<LatLng>> paths)
Sets the path for this polygon. |
void |
PolygonOptions.setPathss(JsArray<JsArray<LatLng>> paths)
The ordered sequence of coordinates that designates a closed loop. |
void |
Polygon.setPathss(MVCArray<MVCArray<LatLng>> paths)
Sets the path for this polygon. |
void |
PolygonOptions.setPathss(MVCArray<MVCArray<LatLng>> paths)
The ordered sequence of coordinates that designates a closed loop. |
Uses of LatLng in com.google.gwt.maps.client.placeslib |
---|
Methods in com.google.gwt.maps.client.placeslib that return LatLng | |
---|---|
LatLng |
PlaceGeometry.getLocation()
The Place's position. |
LatLng |
PlaceSearchRequest.getLocation()
The location around which to search for Places. |
Methods in com.google.gwt.maps.client.placeslib with parameters of type LatLng | |
---|---|
void |
PlaceGeometry.setLocation(LatLng location)
The Place's position. |
void |
PlaceSearchRequest.setLocation(LatLng location)
The location around which to search for Places. |
Uses of LatLng in com.google.gwt.maps.client.services |
---|
Methods in com.google.gwt.maps.client.services that return LatLng | |
---|---|
LatLng |
DirectionsRequest.getDestination_LatLng()
Location of destination. |
LatLng |
DirectionsLeg.getEnd_Location()
The DirectionsService calculates directions between locations by using the nearest transportation option (usually a road) at the start and end locations. |
LatLng |
DirectionsStep.getEnd_Location()
The ending location of this step. |
LatLng |
DirectionsWaypoint.getLocation_LatLng()
Waypoint location. |
LatLng |
GeocoderRequest.getLocation()
LatLng about which to search. |
LatLng |
ElevationResult.getLocation()
The location of this elevation result. |
LatLng |
GeocoderGeometry.getLocation()
The latitude/longitude coordinates of this result |
LatLng |
DirectionsRequest.getOrigin_LatLng()
Location of origin. |
LatLng |
DirectionsLeg.getStart_Location()
The DirectionsService calculates directions between locations by using the nearest transportation option (usually a road) at the start and end locations. |
LatLng |
DirectionsStep.getStart_Location()
The starting location of this step. |
Methods in com.google.gwt.maps.client.services that return types with arguments of type LatLng | |
---|---|
JsArray<LatLng> |
DistanceMatrixRequest.getDestinations()
An array containing destination address strings and/or LatLngs, to which to calculate distance and time. |
JsArray<LatLng> |
LocationElevationRequest.getLocations()
The discrete locations for which to retrieve elevations. |
JsArray<LatLng> |
DistanceMatrixRequest.getOrigins()
An array containing origin address strings and/or LatLngs, from which to calculate distance and time. |
JsArray<LatLng> |
DirectionsRoute.getOverview_Path()
An array of LatLngs representing the entire course of this route. |
JsArray<LatLng> |
DirectionsStep.getPath()
A sequence of LatLngs describing the course of this step. |
JsArray<LatLng> |
PathElevationRequest.getPath()
The path along which to collect elevation values. |
JsArray<LatLng> |
DirectionsLeg.getVia_Waypoints()
An array of waypoints along this leg that were not specified in the original request, either as a result of a user dragging the polyline or selecting an alternate route. |
Methods in com.google.gwt.maps.client.services with parameters of type LatLng | |
---|---|
void |
MaxZoomService.getMaxZoomAtLatLng(LatLng latlng,
MaxZoomServiceHandler handler)
Returns the maximum zoom level available at a particular LatLng for the Satellite map type. |
void |
DirectionsRequest.setDestination(LatLng destination)
Location of destination. |
void |
DirectionsLeg.setEnd_Location(LatLng end_location)
The DirectionsService calculates directions between locations by using the nearest transportation option (usually a road) at the start and end locations. |
void |
DirectionsStep.setEnd_Location(LatLng end_location)
The ending location of this step. |
void |
GeocoderRequest.setLocation(LatLng location)
LatLng about which to search. |
void |
ElevationResult.setLocation(LatLng location)
The location of this elevation result. |
void |
GeocoderGeometry.setLocation(LatLng location)
The latitude/longitude coordinates of this result |
void |
DirectionsWaypoint.setLocation(LatLng location)
Waypoint location. |
void |
DirectionsRequest.setOrigin(LatLng origin)
Location of origin. |
void |
DirectionsLeg.setStart_Location(LatLng start_location)
The DirectionsService calculates directions between locations by using the nearest transportation option (usually a road) at the start and end locations. |
void |
DirectionsStep.setStart_Location(LatLng start_location)
The starting location of this step. |
Method parameters in com.google.gwt.maps.client.services with type arguments of type LatLng | |
---|---|
void |
DistanceMatrixRequest.setDestinations(JsArray<LatLng> destinations)
An array containing destination address strings and/or LatLngs, to which to calculate distance and time. |
void |
LocationElevationRequest.setLocations(JsArray<LatLng> locations)
The discrete locations for which to retrieve elevations. |
void |
DistanceMatrixRequest.setOrigins(JsArray<LatLng> origins)
An array containing origin address strings and/or LatLngs, from which to calculate distance and time. |
void |
DirectionsRoute.setOverview_Path(JsArray<LatLng> overview_path)
An array of LatLngs representing the entire course of this route. |
void |
DirectionsStep.setPath(JsArray<LatLng> path)
A sequence of LatLngs describing the course of this step. |
void |
PathElevationRequest.setPath(JsArray<LatLng> path)
The path along which to collect elevation values. |
void |
DirectionsLeg.setVia_Waypoints(JsArray<LatLng> via_waypoints)
An array of waypoints along this leg that were not specified in the original request, either as a result of a user dragging the polyline or selecting an alternate route. |
Uses of LatLng in com.google.gwt.maps.client.streetview |
---|
Methods in com.google.gwt.maps.client.streetview that return LatLng | |
---|---|
LatLng |
StreetViewLocation.getLatLng()
gets The latlng of the panorama. |
LatLng |
StreetViewPanoramaWidget.getPosition()
Returns the current LatLng position for the Street View panorama. |
LatLng |
StreetViewPanoramaImpl.getPosition()
Returns the current LatLng position for the Street View panorama. |
LatLng |
StreetViewPanoramaOptions.getPosition()
gets The LatLng position of the Street View panorama. |
Methods in com.google.gwt.maps.client.streetview with parameters of type LatLng | |
---|---|
void |
StreetViewService.getPanoramaByLocation(LatLng latlng,
double radius,
PanoramaByLocationHandler handler)
Retrieves the StreetViewPanoramaData for a panorama within a given radius of the given LatLng. |
void |
StreetViewLocation.setLatLng(LatLng latLng)
sets The latlng of the panorama. |
void |
StreetViewPanoramaWidget.setPosition(LatLng latlng)
Sets the current LatLng position for the Street View panorama. |
void |
StreetViewPanoramaImpl.setPosition(LatLng latLng)
Sets the current LatLng position for the Street View panorama. |
void |
StreetViewPanoramaOptions.setPosition(LatLng position)
sets The LatLng position of the Street View panorama. |
|
Follow us on GitHub |
|||||||||
PREV NEXT | FRAMES NO FRAMES |