GOOGLEMAP

Returns a string of HTML for adding a generated map to a web page

Syntax

= GOOGLEMAP (location, width, height, googleMapParameters, googlePopupMapParameters)

Parameters:

location

String containing the location in any of 3 formats: an XML location string, a latitude and longitude separated by a semicolon or a street address.

width

Integer width of map image or iframe. -1 will use the default value

height

Integer height of map image or iframe. -1 will use the default value

googleMapParameters

These are additional map parameters. Values can be separated using ampersand character. Please check the following url for additional parameters.

https://developers.google.com/maps/documentation/staticmaps/

googlePopupMapParameters

These are additional direction parameters. Values can be separated using ampersand character. Please check the following url for additional parameters.

https://developers.google.com/maps/documentation/staticmaps/

Return Type

String

Returns a string of HTML for adding a generated map to a web page.

 

Examples

Example

Returns

= GOOGLEMAP (“37.39;-121.26”, 300, 200, “”, “”)

Returns a string of HTML for adding a generated interactive map to a web page.

 

 

Syntax

= GOOGLEMAP (latitude, longitude)

Parameters:

latitude

Latitude value as decimal

longitude

Longitude value  as decimal

Return Type

String

Returns a string of HTML for adding a generated map to a web page.

 

Examples

Example

Returns

= GOOGLEMAP (37.39,-121.26)

Returns a string of HTML for adding a generated interactive map to a web page.

 

Syntax

= GOOGLEMAP (location)

Parameters:

location

String containing the location in any of 3 formats: an XML location string, a latitude and longitude separated by a semicolon or a street address.

Return Type

String

Returns a string of HTML for adding a generated map to a web page.Examples

Example

Returns

= GOOGLEMAP ("37.39;-121.26")

Returns a string of HTML for adding a generated interactive map to a web page.

= GOOGLEMAP (GetBrowserLocation())

 

Returns a string of HTML for adding a generated interactive map to a web page.

= GOOGLEMAP ("2870 Zanker Rd San Jose, CA")

 

Returns a string of HTML for adding a generated interactive map to a web page.