GOOGLEINTERACTIVEMAP

Returns a string of HTML for adding a generated interactive map to a web page. The interactive map can be zoomed, etc., but clicking on it does not popup anything. Note that the string returned will be an iframe, which is too heavyweight to be included in a repeater

Syntax

= GOOGLEINTERACTIVEMAP (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 interactive map to a web page.

 

Examples

Example

Returns

= GOOGLEINTERACTIVEMAP ("37.39;-121.26")

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

= GOOGLEINTERACTIVEMAP (GetBrowserLocation())

 

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

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

 

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

 

Syntax

= GOOGLEINTERACTIVEMAP (location, width, height, googleMapParameters)

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/

 

Return Type

String

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

Examples

Example

Returns

= GOOGLEINTERACTIVEMAP("2870 zanker rd san jose, CA", 500, 500, "maptype=roadmap")

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