If a third value is inserted into any tuple (representing altitude) it will be ignored. Altitude is set using and (or ) extending . Allowed altitude modes are absolute, clampToGround, and clampToSeaFloor.
Specifies the coordinates of the four corner points of a quadrilateral defining the overlay area. Exactly four coordinate tuples have to be provided, each consisting of floating point values for longitude and latitude. Insert a space between tuples. Do not include spaces within a tuple. The coordinates must be specified in counter-clockwise order with the first coordinate corresponding to the lower-left corner of the overlayed image. The shape described by these corners must be convex.
Syntax:
<GroundOverlay id="ID"> ... <Icon>...</Icon> <altitude>0</altitude> <altitudeMode>clampToGround</altitudeMode> <!-- or absolute --> <!-- can substitute <gx:altitudeMode>clampToSeaFloor</gx:altitudeMode> --> <gx:LatLonQuad> <coordinates>...</coordinates> <!-- four lon,lat tuples --> </gx:LatLonQuad> </GroundOverlay>
public static AddressDetails createXalAddressDetails(final AddressDetails.Address xalAddress, final AddressLines addressLines, final AddressDetails.Country country, final AdministrativeArea administrativeArea, final Locality locality, final Thoroughfare thoroughfare) {
return new AddressDetails(xalAddress, addressLines, country, administrativeArea, locality, thoroughfare);
public AddressDetails createAndSetXalAddressDetails(final AddressDetails.Address xalAddress, final AddressLines addressLines, final AddressDetails.Country country, final AdministrativeArea administrativeArea, final Locality locality, final Thoroughfare thoroughfare) {
AddressDetails newValue = new AddressDetails(xalAddress, addressLines, country, administrativeArea, locality, thoroughfare);
public static AddressDetails createXalAddressDetails(final AddressDetails.Address xalAddress, final AddressLines addressLines, final AddressDetails.Country country, final AdministrativeArea administrativeArea, final Locality locality, final Thoroughfare thoroughfare) {
return new AddressDetails(xalAddress, addressLines, country, administrativeArea, locality, thoroughfare);
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.