PROPERTIES
GoogleMap
A Google Map element that allows you to display a given location.
Table of Contents
FUNCTIONS
collapsed
property to true
.collapsed
property to false
.Hides the element and sets its hidden
property
to true
, using an effect if specified.
Adds an event handler that runs when the mouse pointer is moved onto the element.
Adds an event handler that runs when the mouse pointer is moved off of the element.
Adds an event handler that runs when an element is displayed in the viewable part of the current window.
Adds an event handler that runs when an element is no longer displayed in the viewable part of the current window.
Shows the element and sets its hidden
property
to false
, using an effect if specified.
OBJECTS
An object used by the location
property that
contains the attributes of a marked map location.
MIXES IN
collapsed
Description
If collapsed
is true
, the element is not displayed on the page under
any circumstances. A collapsed element, unlike a
hidden
element, does not take up any
space on the page. When collapsed, elements positioned within 70 pixels
below the collapsed element and each other move up to take the
collapsed element's place where possible. The elements that move up
maintain their positions relative to one another.
If collapsed
is false
, the element may be displayed on the page.
Elements that moved up to take the collapsed element's place on the
page are moved back down.
However, an expanded element (an element whose collapsed
property is
false
) is still not displayed if:
- It is hidden.
- Its parent element is hidden or collapsed.
- It is a slide in a Slideshow which is currently not being displayed.
Even if the element is not be displayed due to the conditions
mentioned above, if its collapsed
property is false
, it's
displayed when the conditions no longer apply.
To set the collapsed
property on an element, use the element's
collapse()
and expand()
functions.
If you select Collapsed on load in the element's Properties panel
in the Editor, the collapsed
property is set to true
when the page loads.
See Also
Syntax
get collapsed(): boolean
MIXED IN FROM
Examples
Get an element's collapsed status
let isCollapsed = $w("#myElement").collapsed; // false
Toggle an element's collapsed state
if( $w("#myElement").collapsed ) {
$w("#myElement").expand();
}
else {
$w("#myElement").collapse();
}
global
Description
If global
is true
, the element appears on all pages.
If global
is false
, the element only appears on the current page.
Syntax
get global(): boolean
MIXED IN FROM
Examples
Get whether an element is displayed on all pages
let isGlobal = $w("#myElement").global; // false
hidden
Description
If hidden
is true
, the element is not displayed on the page under
any circumstances. A hidden element, unlike a
collapsed
element, continues to
take up the same space on the page as it did when it was visible.
If hidden
is false
, the element may be displayed on the page.
However, an element whose hidden
property is false
is still not
displayed if:
- It is collapsed.
- Its parent element is hidden or collapsed.
- It is a slide in a Slideshow which is currently not being displayed.
Even if the element is not displayed due to the conditions
mentioned above, if its hidden
property is set to false
, it's
displayed when the conditions no longer apply.
To determine if the element is actually visible, use the
isVisible
property.
To set the hidden
property on an element, use the element's
hide()
or show()
functions.
If you select Hidden on load in the element's Properties panel
in the Editor, the hidden
property is set to true
when the page loads.
Note
An element's hidden
property is not the same as its
isVisible property. The hidden
property
indicates whether the element should be displayed, while isVisible
indicates if it is actually displayed.
See Also
hide( ), show( ), collapse( ), expand( ), collapsed, rendered
Syntax
get hidden(): boolean
MIXED IN FROM
Examples
Get an element's hidden status
let isHidden = $w("#myElement").hidden; // false
Toggle an element's hidden state
if( $w("#myElement").hidden ) {
$w("#myElement").show();
}
else {
$w("#myElement").hide();
}
id
Description
The ID is the element's unique identifier. It is used when selecting
elements using the $w()
function.
An element's id
is set in the Editor using the Properties panel.
Syntax
get id(): string
MIXED IN FROM
Examples
Get the ID
let myId = $w("#myElement").id; // "myElement"
isVisible
Description
If isVisible
is true
, the element is displayed on the page.
If isVisible
is false
, the element is not displayed on the page.
The value of the isVisible
property is calculated based on the
hidden
, collapsed
, and rendered
properties of the element and all of its ancestors. It is true
only if the conditions exist in the element's property values and the
property values of its ancestors such that the element is actually
displayed on the page.
Note
An element's isVisible
property is not the same as its
hidden property. The isVisible
property
indicates whether the element is actually displayed, while hidden
indicates if it should be displayed.
The isVisible
property of an element remains true
even if
another element completely covers it so that a user cannot see it.
See Also
Syntax
get isVisible(): boolean
MIXED IN FROM
Examples
Get whether an element is visible
let isVisible = $w("#myElement").isVisible; // true
location
Description
Setting the location
property to a MapLocation
object moves the map's marked location.
Getting the location
property returns the location
information of the map's marked location.
Syntax
get location(): MapLocation
set location(value: MapLocation): void
Examples
Get map location info
let myLocation = $w("#myGoogleMap").location;
let locationLatitude = myLocation.latitude; // 37.77065
let locationLongitude = myLocation.longitude; // -122.387301
let locationDescription = myLocation.description; // "Wix Office"
Set map location info
$w("#myGoogleMap").location = {
"latitude": 37.77065,
"longitude": -122.387301,
"description":"Wix Office"
};
parent
Description
See Also
Syntax
get parent(): Node
MIXED IN FROM
Examples
Get the parent element and the parent's ID
let parentElement = $w("#myElement").parent;
let parentId = parentElement.id; // "page1"
Syntax
get rendered(): boolean
MIXED IN FROM
Examples
Get an element's rendered status
let isRendered = $w("#myElement").rendered; // true
Examples
Get the element's type
let myType = $w("#myElement").type; // "$w.Type"
collapse( )
collapsed
property to true
.Description
See Also
Syntax
function collapse(): Promise<void>
collapsed
property has been set to true
.MIXED IN FROM
Examples
Collapse an element
$w("#myElement").collapse();
Collapse an element and log a message when done
$w("#myElement").collapse()
.then( () => {
console.log("Done with collapse");
} );
Toggle an element's collapsed state
if( $w("#myElement").collapsed ) {
$w("#myElement").expand();
}
else {
$w("#myElement").collapse();
}
expand( )
collapsed
property to false
.Description
See Also
Syntax
function expand(): Promise<void>
collapsed
property has been set to false
.MIXED IN FROM
Examples
Expand an element
$w("#myElement").expand();
Expand an element and log a message when done
$w("#myElement").expand()
.then( () => {
console.log("Done with expand");
} );
Toggle an element's collapsed state
if( $w("#myElement").collapsed ) {
$w("#myElement").expand();
}
else {
$w("#myElement").collapse();
}
hide( )
Hides the element and sets its hidden
property
to true
, using an effect if specified.
Description
The hide()
function hides the element and returns a Promise that is
resolved when the effect is complete and the element's hidden
property has been set to true
.
To learn about the behavior of a hidden element,
see the hidden
property.
You can optionally apply an effect when hiding the element by providing
an effectName
value. You can also customize the effect by providing the
optional effectOptions
object.
Effects:
You can also hide an element when the page loads by using the Properties panel in the Editor.
See Also
Syntax
function hide([effectName: string], [effectOptions: ArcEffectOptions | BounceEffectOptions | FadeEffectOptions | FlipEffectOptions | FloatEffectOptions | FlyEffectOptions | FoldEffectOptions | GlideEffectOptions | PuffEffectOptions | RollEffectOptions | SlideEffectOptions | SpinEffectOptions | TurnEffectOptions | ZoomEffectOptions]): Promise<void>
The name of the effect to play when hiding the item.
hidden
property has been set to true
.MIXED IN FROM
Examples
Hide an element with no effect
$w("#myElement").hide();
Hide an element with the "fade" effect
$w("#myElement").hide("fade");
Hide an element with the "fade" effect and custom options
let fadeOptions = {
"duration": 2000,
"delay": 1000
};
$w("#myElement").hide("fade", fadeOptions);
Hide an element with an effect and log a message when the effect is done
$w("#myElement").hide("fade")
.then( ( ) => {
console.log("Done with fade");
} );
Toggle an element's hidden state
if( $w("#myElement").hidden ) {
$w("#myElement").show();
}
else {
$w("#myElement").hide();
}
onMouseIn( )
Adds an event handler that runs when the mouse pointer is moved onto the element.
Note
Deprecation note: The $w parameter of event handlers is being deprecated. To get
a scoped selector for working with elements in repeater items, use the $w.at() function
and pass it the context property of the event parameter: $item = $w.at(event.context)
. To learn more, see
here.
Syntax
function onMouseIn(handler: MouseEventHandler): Element
callback MouseEventHandler(event: MouseEvent, $w: $w): void
The name of the function or the function expression to run when the mouse pointer is moved onto the element.
MIXED IN FROM
Examples
Get the mouse event info when the mouse enters an element
$w("#myElement").onMouseIn( (event) => {
let clientX = event.clientX; // 362
let clientY = event.clientY; // 244
let offsetX = event.offsetX; // 10
let offsetY = event.offsetY; // 12
let pageX = event.pageX; // 362
let pageY = event.pageY; // 376
let screenX = event.screenX; // 3897
let screenY = event.screenY; // 362
} );
onMouseOut( )
Adds an event handler that runs when the mouse pointer is moved off of the element.
Note
Deprecation note: The $w parameter of event handlers is being deprecated. To get
a scoped selector for working with elements in repeater items, use the $w.at() function
and pass it the context property of the event parameter: $item = $w.at(event.context)
. To learn more, see
here.
Syntax
function onMouseOut(handler: MouseEventHandler): Element
callback MouseEventHandler(event: MouseEvent, $w: $w): void
The name of the function or the function expression to run when the mouse pointer is moved off of the element.
MIXED IN FROM
Examples
Get the mouse event info when the mouse exits an element
$w("#myElement").onMouseOut( (event) => {
let clientX = event.clientX; // 362
let clientY = event.clientY; // 244
let offsetX = event.offsetX; // 10
let offsetY = event.offsetY; // 12
let pageX = event.pageX; // 362
let pageY = event.pageY; // 376
let screenX = event.screenX; // 3897
let screenY = event.screenY; // 362
} );
onViewportEnter( )
Adds an event handler that runs when an element is displayed in the viewable part of the current window.
Description
An element enters the viewport when the page is scrolled to show any
part of the element. An element also enters the viewport if it was
hidden or collapsed
and is then shown or expanded in the viewable part of the current window. onViewportEnter()
is not fired for hidden or collapsed
elements even if they are scrolled into view.
Note
Deprecation note: The $w parameter of event handlers is being deprecated. To get
a scoped selector for working with elements in repeater items, use the $w.at() function
and pass it the context property of the event parameter: $item = $w.at(event.context)
. To learn more, see
here.
See Also
Syntax
function onViewportEnter(handler: EventHandler): Element
callback EventHandler(event: Event, $w: $w): void
The name of the function or the function expression to run when the element enters the viewport.
MIXED IN FROM
Examples
Get the ID of the element that has entered the viewport
$w("#myElement").onViewportEnter( (event) => {
let targetId = event.target.id; // "myElement"
});
onViewportLeave( )
Adds an event handler that runs when an element is no longer displayed in the viewable part of the current window.
Description
An element leaves the viewport when the page is scrolled so that the
element is completely out of view. An element also leaves the viewport
if it was shown or expanded and is then hidden
or collapsed from the viewable part
of the current window. onViewportLeave()
is not fired for hidden or collapsed
elements even if they are scrolled out of view.
Note
Deprecation note: The $w parameter of event handlers is being deprecated. To get
a scoped selector for working with elements in repeater items, use the $w.at() function
and pass it the context property of the event parameter: $item = $w.at(event.context)
. To learn more, see
here.
See Also
Syntax
function onViewportLeave(handler: EventHandler): Element
callback EventHandler(event: Event, $w: $w): void
The name of the function or the function expression to run when the element leaves the viewport.
MIXED IN FROM
Examples
Get the ID of the element that has left the viewport
$w("#myElement").onViewportLeave( (event) => {
let targetId = event.target.id; // "myElement"
});
scrollTo( )
Description
The scrollTo()
function returns a Promise that is resolved when the
animated scroll is complete and the element is now in view.
To scroll to a specific location on the page, see the wix-window
scrollTo()
function.
Calling the scrollTo()
function on an element in a repeated item that
is selected from the global scope causes
an error.
Syntax
function scrollTo(): Promise<void>
MIXED IN FROM
Examples
Scroll the page to an element
$w("#myElement").scrollTo();
Scroll the page to an element and log message when done
$w("#myElement").scrollTo()
.then( ( ) => {
console.log("Done with scroll");
} );
show( )
Shows the element and sets its hidden
property
to false
, using an effect if specified.
Description
The show()
function shows the element and returns a Promise that is
resolved when the effect is complete and the element's hidden
property has been set to false
.
You can optionally apply an effect when showing the element by providing
an effectName
value. You can also customize the effect by providing the
optional effectOptions
object.
Effects:
See Also
Syntax
function show([effectName: string], [effectOptions: ArcEffectOptions | BounceEffectOptions | FadeEffectOptions | FlipEffectOptions | FloatEffectOptions | FlyEffectOptions | FoldEffectOptions | GlideEffectOptions | PuffEffectOptions | RollEffectOptions | SlideEffectOptions | SpinEffectOptions | TurnEffectOptions | ZoomEffectOptions]): Promise<void>
The name of the effect to play when showing the item.
hidden
property has been set to false
.MIXED IN FROM
Examples
Show an element with no effect
$w("#myElement").show();
Show an element with the "fade" effect
$w("#myElement").show("fade");
Show an element with the "fade" effect and custom options
let fadeOptions = {
"duration": 2000,
"delay": 1000
};
$w("#myElement").show("fade", fadeOptions);
Show an element with an effect and log a message when the effect is done
$w("#myElement").show("fade")
.then( ( ) => {
console.log("Done with fade");
} );
Toggle an element's hidden state
if( $w("#myElement").hidden ) {
$w("#myElement").show();
}
else {
$w("#myElement").hide();
}
MapLocation
An object used by the location
property that
contains the attributes of a marked map location.
See Also
Syntax
type MapLocation = {
latitude: number
longitude: number
description: string
}
Examples
Get map location info
let myLocation = $w("#myGoogleMap").location;
let locationLatitude = myLocation.latitude; // 37.77065
let locationLongitude = myLocation.longitude; // -122.387301
let locationDescription = myLocation.description; // "Wix Office"