Marker3DElement class
google.maps.maps3d
. Marker3DElement
class
Shows a position on a 3D map. Note that the position
must be set for the Marker3DElement
to display.
Custom element: <gmp-marker-3d altitude-mode="absolute" collision-behavior="required" draws-when-occluded extruded label="string" position="lat,lng" size-preserved z-index="number"></gmp-marker-3d>
This class extends HTMLElement
.
This class implements Marker3DElementOptions
.
Access by calling const {Marker3DElement} = await google.maps.importLibrary("maps3d")
.See Libraries in the Maps JavaScript API
.
Constructor
Marker3DElement([options])
-
options:Marker3DElementOptions optional
Marker3DElement
with the options specified.Properties
AltitudeMode
optional
AltitudeMode.CLAMP_TO_GROUND
-
<gmp-marker-3d altitude-mode="absolute"></gmp-marker-3d> -
<gmp-marker-3d altitude-mode="clamp-to-ground"></gmp-marker-3d> -
<gmp-marker-3d altitude-mode="relative-to-ground"></gmp-marker-3d> -
<gmp-marker-3d altitude-mode="relative-to-mesh"></gmp-marker-3d>
CollisionBehavior
optional
CollisionBehavior.REQUIRED
-
<gmp-marker-3d collision-behavior="required"></gmp-marker-3d> -
<gmp-marker-3d collision-behavior="required-and-hides-optional"></gmp-marker-3d> -
<gmp-marker-3d collision-behavior="optional-and-hides-lower-priority"></gmp-marker-3d>
boolean optional
false
-
<gmp-marker-3d draws-when-occluded></gmp-marker-3d>
boolean optional
false
altitudeMode
must be either RELATIVE_TO_GROUND
or ABSOLUTE
.-
<gmp-marker-3d extruded></gmp-marker-3d>
string optional
-
<gmp-marker-3d label="string"></gmp-marker-3d>
LatLngLiteral
| LatLngAltitude
| LatLngAltitudeLiteral
optional
-
<gmp-marker-3d position="lat,lng"></gmp-marker-3d> -
<gmp-marker-3d position="lat,lng,altitude"></gmp-marker-3d>
boolean optional
false
-
<gmp-marker-3d size-preserved></gmp-marker-3d>
number optional
-
<gmp-marker-3d z-index="number"></gmp-marker-3d>
Slots |
|
|---|---|
default
|
Any custom elements directly added to the
Marker3DElement
will be slotted, however only elements of HTMLImageElement
, SVGElement
and PinElement
types will be used for drawing markers, other elements will be ignored.HTMLImageElement
and SVGElement
must be wrapped in <template>
element before assigning to the Marker3DElement
's default slot.Images and SVGs are currently rasterized before they are rendered in the 3D scene, so custom HTML embedded into SVG or CSS classes added to images won't be applied and might not be reflected when markers are displayed on the screen. |
Methods
addEventListener(type, listener[, options])
-
type:stringA case-sensitive string representing the event type to listen for. -
listener:EventListener | EventListenerObjectThe object that receives a notification. This must be a function or an object with the handleEvent method -
options:boolean| AddEventListenerOptions optionalSee options . Custom events only supportcaptureandpassive.
void
removeEventListener(type, listener[, options])
-
type:stringA string which specifies the type of event for which to remove an event listener. -
listener:EventListener | EventListenerObjectThe event listener of the event handler to remove from the event target. -
options:boolean| EventListenerOptions optionalSee options .
void
Marker3DElementOptions interface
google.maps.maps3d
. Marker3DElementOptions
interface
Marker3DElementOptions object used to define the properties that can be set on a Marker3DElement.
Properties |
|
|---|---|
altitudeMode
optional
|
Type:
AltitudeMode
optional
|
collisionBehavior
optional
|
Type:
CollisionBehavior
optional
|
drawsWhenOccluded
optional
|
Type:
boolean optional
|
extruded
optional
|
Type:
boolean optional
|
label
optional
|
Type:
string optional
|
position
optional
|
Type:
LatLngLiteral
| LatLngAltitude
| LatLngAltitudeLiteral
optional
|
sizePreserved
optional
|
Type:
boolean optional
|
zIndex
optional
|
Type:
number optional
|
Marker3DInteractiveElement class
google.maps.maps3d
. Marker3DInteractiveElement
class
Shows a position on a 3D map. Note that the position
must be set for the Marker3DInteractiveElement
to display. Unlike Marker3DElement
, Marker3DInteractiveElement
receives a gmp-click
event.
Custom element: <gmp-marker-3d-interactive gmp-popover-target="popover-id" title="string"></gmp-marker-3d-interactive>
This class extends Marker3DElement
.
This class implements Marker3DInteractiveElementOptions
.
Access by calling const {Marker3DInteractiveElement} = await google.maps.importLibrary("maps3d")
.See Libraries in the Maps JavaScript API
.
Constructor
Marker3DInteractiveElement([options])
-
options:Marker3DInteractiveElementOptions optional
Marker3DInteractiveElement
with the options specified.Properties
PopoverElement
optional
-
<gmp-marker-3d-interactive gmp-popover-target="popover-id"></gmp-marker-3d-interactive>
string
Marker3DInteractiveElement
with the provided value.-
<gmp-marker-3d-interactive title="string"></gmp-marker-3d-interactive>
altitudeMode
, collisionBehavior
, drawsWhenOccluded
, extruded
, label
, position
, sizePreserved
, zIndex
Slots |
|
|---|---|
default
|
Any custom elements directly added to the
Marker3DInteractiveElement
will be slotted, however only elements of PinElement
's type will be used for drawing markers, other elements will be ignored. |
Methods
addEventListener(type, listener[, options])
-
type:stringA case-sensitive string representing the event type to listen for. -
listener:EventListener | EventListenerObjectThe object that receives a notification. This must be a function or an object with the handleEvent method -
options:boolean| AddEventListenerOptions optionalSee options . Custom events only supportcaptureandpassive.
void
removeEventListener(type, listener[, options])
-
type:stringA string which specifies the type of event for which to remove an event listener. -
listener:EventListener | EventListenerObjectThe event listener of the event handler to remove from the event target. -
options:boolean| EventListenerOptions optionalSee options .
void
Events
function(clickEvent)
-
clickEvent:LocationClickEvent
Marker3DInteractiveElementOptions interface
google.maps.maps3d
. Marker3DInteractiveElementOptions
interface
Marker3DInteractiveElementOptions object used to define the properties that can be set on a Marker3DInteractiveElement.
This interface extends Marker3DElementOptions
.
Properties |
|
|---|---|
gmpPopoverTargetElement
optional
|
Type:
PopoverElement
optional
|
title
optional
|
Type:
string optional
|
Inherited:
altitudeMode
, collisionBehavior
, drawsWhenOccluded
, extruded
, label
, position
, sizePreserved
, zIndex
|
|
Model3DElement class
google.maps.maps3d
. Model3DElement
class
A 3D model which allows the rendering of gLTF models. Note that the position
and the src
must be set for the Model3DElement
to display.
Core properties of the gLTF PBR
should be supported. No extensions or extension properties are currently supported.
Custom element: <gmp-model-3d altitude-mode="absolute" orientation="heading,tilt,roll" position="lat,lng" scale="number" src="url"></gmp-model-3d>
This class extends HTMLElement
.
This class implements Model3DElementOptions
.
Access by calling const {Model3DElement} = await google.maps.importLibrary("maps3d")
.See Libraries in the Maps JavaScript API
.
Constructor
Model3DElement([options])
-
options:Model3DElementOptions optional
Model3DElement
with the options specified.Properties
AltitudeMode
optional
AltitudeMode.CLAMP_TO_GROUND
-
<gmp-model-3d altitude-mode="absolute"></gmp-model-3d> -
<gmp-model-3d altitude-mode="clamp-to-ground"></gmp-model-3d> -
<gmp-model-3d altitude-mode="relative-to-ground"></gmp-model-3d> -
<gmp-model-3d altitude-mode="relative-to-mesh"></gmp-model-3d>
Orientation3D
| Orientation3DLiteral
optional
Rotations are applied to the model in the following order: roll, tilt and then heading.
-
<gmp-model-3d orientation="heading,tilt,roll"></gmp-model-3d>
LatLngLiteral
| LatLngAltitude
| LatLngAltitudeLiteral
optional
Model3DElement
's position. Altitude is ignored in certain modes and thus optional.-
<gmp-model-3d position="lat,lng"></gmp-model-3d> -
<gmp-model-3d position="lat,lng,altitude"></gmp-model-3d>
number| Vector3D
| Vector3DLiteral
optional
1
-
<gmp-model-3d scale="number"></gmp-model-3d> -
<gmp-model-3d scale="x,y,z"></gmp-model-3d>
string| URL
optional
.glb
format are supported.Any relative HTTP urls will be resolved to their corresponding absolute ones.
Please note that If you're hosting your
.glb
model files on a different website or server than your main application, make sure to set up the correct CORS HTTP headers. This allows your application to securely access the model files from the other domain.-
<gmp-model-3d src="url"></gmp-model-3d>
Methods
addEventListener(type, listener[, options])
-
type:stringA case-sensitive string representing the event type to listen for. -
listener:EventListener | EventListenerObjectThe object that receives a notification. This must be a function or an object with the handleEvent method -
options:boolean| AddEventListenerOptions optionalSee options . Custom events only supportcaptureandpassive.
void
removeEventListener(type, listener[, options])
-
type:stringA string which specifies the type of event for which to remove an event listener. -
listener:EventListener | EventListenerObjectThe event listener of the event handler to remove from the event target. -
options:boolean| EventListenerOptions optionalSee options .
void
Model3DElementOptions interface
google.maps.maps3d
. Model3DElementOptions
interface
Model3DElementOptions object used to define the properties that can be set on a Model3DElement.
Properties |
|
|---|---|
altitudeMode
optional
|
Type:
AltitudeMode
optional
|
orientation
optional
|
Type:
Orientation3D
| Orientation3DLiteral
optional
|
position
optional
|
Type:
LatLngLiteral
| LatLngAltitude
| LatLngAltitudeLiteral
optional
|
scale
optional
|
Type:
number| Vector3D
| Vector3DLiteral
optional
|
src
optional
|
Type:
string| URL
optional
|
Model3DInteractiveElement class
google.maps.maps3d
. Model3DInteractiveElement
class
A 3D model which allows the rendering of gLTF models. Note that the position
and the src
must be set for the Model3DElement
to display.
Core properties of the gLTF PBR
should be supported. No extensions or extension properties are currently supported.
Unlike Model3DElement
, Model3DInteractiveElement
receives a gmp-click
event.
Custom element: <gmp-model-3d-interactive></gmp-model-3d-interactive>
This class extends Model3DElement
.
This class implements Model3DInteractiveElementOptions
.
Access by calling const {Model3DInteractiveElement} = await google.maps.importLibrary("maps3d")
.See Libraries in the Maps JavaScript API
.
Constructor
Model3DInteractiveElement([options])
-
options:Model3DElementOptions optional
Model3DInteractiveElement
with the options specified. Properties |
|
|---|---|
Inherited:
altitudeMode
, orientation
, position
, scale
, src
|
Methods
addEventListener(type, listener[, options])
-
type:stringA case-sensitive string representing the event type to listen for. -
listener:EventListener | EventListenerObjectThe object that receives a notification. This must be a function or an object with the handleEvent method -
options:boolean| AddEventListenerOptions optionalSee options . Custom events only supportcaptureandpassive.
void
removeEventListener(type, listener[, options])
-
type:stringA string which specifies the type of event for which to remove an event listener. -
listener:EventListener | EventListenerObjectThe event listener of the event handler to remove from the event target. -
options:boolean| EventListenerOptions optionalSee options .
void
Events
function(clickEvent)
-
clickEvent:LocationClickEvent
Model3DInteractiveElementOptions interface
google.maps.maps3d
. Model3DInteractiveElementOptions
interface
Model3DInteractiveElementOptions object used to define the properties that can be set on a Model3DInteractiveElement.
This interface extends Model3DElementOptions
.
Properties |
|
|---|---|
Inherited:
altitudeMode
, orientation
, position
, scale
, src
|
Polyline3DElement class
google.maps.maps3d
. Polyline3DElement
class
A 3D polyline is a linear overlay of connected line segments on a 3D map.
Custom element: <gmp-polyline-3d altitude-mode="absolute" draws-occluded-segments extruded geodesic outer-color="string" outer-width="number" path="lat1,lng1,altitude1 lat2,lng2,altitude2 lat3,lng3,altitude3 ..." stroke-color="string" stroke-width="number" z-index="number"></gmp-polyline-3d>
This class extends HTMLElement
.
This class implements Polyline3DElementOptions
.
Access by calling const {Polyline3DElement} = await google.maps.importLibrary("maps3d")
.See Libraries in the Maps JavaScript API
.
Constructor
Polyline3DElement([options])
-
options:Polyline3DElementOptions optional
Polyline3DElement
with the options specified.Properties
AltitudeMode
optional
AltitudeMode.CLAMP_TO_GROUND
-
<gmp-polyline-3d altitude-mode="absolute"></gmp-polyline-3d> -
<gmp-polyline-3d altitude-mode="clamp-to-ground"></gmp-polyline-3d> -
<gmp-polyline-3d altitude-mode="relative-to-ground"></gmp-polyline-3d> -
<gmp-polyline-3d altitude-mode="relative-to-mesh"></gmp-polyline-3d>
boolean optional
false
-
<gmp-polyline-3d draws-occluded-segments></gmp-polyline-3d>
boolean optional
false
altitudeMode
must be either RELATIVE_TO_GROUND
or ABSOLUTE
.-
<gmp-polyline-3d extruded></gmp-polyline-3d>
boolean optional
false
true
, edges of the polyline are interpreted as geodesic and will follow the curvature of the Earth. When false
, edges of the polyline are rendered as straight lines in screen space.-
<gmp-polyline-3d geodesic></gmp-polyline-3d>
string optional
-
<gmp-polyline-3d outer-color="string"></gmp-polyline-3d>
number optional
0.0
and 1.0
. This is a percentage of the strokeWidth
.-
<gmp-polyline-3d outer-width="number"></gmp-polyline-3d>
Iterable
< LatLngAltitude
| LatLngAltitudeLiteral
| LatLngLiteral
> optional
-
<gmp-polyline-3d path="lat1,lng1,altitude1 lat2,lng2,altitude2 lat3,lng3,altitude3 ..."></gmp-polyline-3d>
string optional
-
<gmp-polyline-3d stroke-color="string"></gmp-polyline-3d>
number optional
-
<gmp-polyline-3d stroke-width="number"></gmp-polyline-3d>
number optional
-
<gmp-polyline-3d z-index="number"></gmp-polyline-3d>
Iterable
< LatLngAltitude
| LatLngAltitudeLiteral
| LatLngLiteral
> optional
Methods
addEventListener(type, listener[, options])
-
type:stringA case-sensitive string representing the event type to listen for. -
listener:EventListener | EventListenerObjectThe object that receives a notification. This must be a function or an object with the handleEvent method -
options:boolean| AddEventListenerOptions optionalSee options . Custom events only supportcaptureandpassive.
void
removeEventListener(type, listener[, options])
-
type:stringA string which specifies the type of event for which to remove an event listener. -
listener:EventListener | EventListenerObjectThe event listener of the event handler to remove from the event target. -
options:boolean| EventListenerOptions optionalSee options .
void
Polyline3DElementOptions interface
google.maps.maps3d
. Polyline3DElementOptions
interface
Polyline3DElementOptions object used to define the properties that can be set on a Polyline3DElement.
Properties |
|
|---|---|
altitudeMode
optional
|
Type:
AltitudeMode
optional
|
coordinates
optional
|
Type:
Iterable
< LatLngAltitude
| LatLngAltitudeLiteral
| LatLngLiteral
> optional
|
drawsOccludedSegments
optional
|
Type:
boolean optional
|
extruded
optional
|
Type:
boolean optional
|
geodesic
optional
|
Type:
boolean optional
|
outerColor
optional
|
Type:
string optional
|
outerWidth
optional
|
Type:
number optional
|
strokeColor
optional
|
Type:
string optional
|
strokeWidth
optional
|
Type:
number optional
|
zIndex
optional
|
Type:
number optional
|
Polyline3DInteractiveElement class
google.maps.maps3d
. Polyline3DInteractiveElement
class
A 3D polyline is a linear overlay of connected line segments on a 3D map. Unlike Polyline3DElement
, Polyline3DInteractiveElement
receives a gmp-click
event.
Custom element: <gmp-polyline-3d-interactive></gmp-polyline-3d-interactive>
This class extends Polyline3DElement
.
This class implements Polyline3DInteractiveElementOptions
.
Access by calling const {Polyline3DInteractiveElement} = await google.maps.importLibrary("maps3d")
.See Libraries in the Maps JavaScript API
.
Constructor
Polyline3DInteractiveElement([options])
-
options:Polyline3DElementOptions optional
Polyline3DInteractiveElement
with the options specified. Properties |
|
|---|---|
Inherited:
altitudeMode
, drawsOccludedSegments
, extruded
, geodesic
, outerColor
, outerWidth
, path
, strokeColor
, strokeWidth
, zIndex
,
|
Methods
addEventListener(type, listener[, options])
-
type:stringA case-sensitive string representing the event type to listen for. -
listener:EventListener | EventListenerObjectThe object that receives a notification. This must be a function or an object with the handleEvent method -
options:boolean| AddEventListenerOptions optionalSee options . Custom events only supportcaptureandpassive.
void
removeEventListener(type, listener[, options])
-
type:stringA string which specifies the type of event for which to remove an event listener. -
listener:EventListener | EventListenerObjectThe event listener of the event handler to remove from the event target. -
options:boolean| EventListenerOptions optionalSee options .
void
Events
function(clickEvent)
-
clickEvent:LocationClickEventThe event object will contain the lat-lng-altitude location of the click.
Polyline3DInteractiveElementOptions interface
google.maps.maps3d
. Polyline3DInteractiveElementOptions
interface
Polyline3DInteractiveElementOptions object used to define the properties that can be set on a Polyline3DInteractiveElement.
This interface extends Polyline3DElementOptions
.
Properties |
|
|---|---|
Inherited:
altitudeMode
, coordinates
, drawsOccludedSegments
, extruded
, geodesic
, outerColor
, outerWidth
, strokeColor
, strokeWidth
, zIndex
|
Polygon3DElement class
google.maps.maps3d
. Polygon3DElement
class
A 3D polygon (like a 3D polyline) defines a series of connected coordinates in an ordered sequence. Additionally, polygons form a closed loop and define a filled region.
Custom element: <gmp-polygon-3d altitude-mode="absolute" draws-occluded-segments extruded fill-color="string" geodesic path="lat1,lng1,altitude1 lat2,lng2,altitude2 lat3,lng3,altitude3 ..." stroke-color="string" stroke-width="number" z-index="number"></gmp-polygon-3d>
This class extends HTMLElement
.
This class implements Polygon3DElementOptions
.
Access by calling const {Polygon3DElement} = await google.maps.importLibrary("maps3d")
.See Libraries in the Maps JavaScript API
.
Constructor
Polygon3DElement([options])
-
options:Polygon3DElementOptions optional
Polygon3DElement
with the options specified.Properties
AltitudeMode
optional
AltitudeMode.CLAMP_TO_GROUND
-
<gmp-polygon-3d altitude-mode="absolute"></gmp-polygon-3d> -
<gmp-polygon-3d altitude-mode="clamp-to-ground"></gmp-polygon-3d> -
<gmp-polygon-3d altitude-mode="relative-to-ground"></gmp-polygon-3d> -
<gmp-polygon-3d altitude-mode="relative-to-mesh"></gmp-polygon-3d>
boolean optional
false
-
<gmp-polygon-3d draws-occluded-segments></gmp-polygon-3d>
boolean optional
false
altitudeMode
must be either RELATIVE_TO_GROUND
or ABSOLUTE
.-
<gmp-polygon-3d extruded></gmp-polygon-3d>
string optional
-
<gmp-polygon-3d fill-color="string"></gmp-polygon-3d>
boolean optional
false
true
, edges of the polygon are interpreted as geodesic and will follow the curvature of the Earth. When false
, edges of the polygon are rendered as straight lines in screen space.-
<gmp-polygon-3d geodesic></gmp-polygon-3d>
Iterable
< Iterable
< LatLngAltitude
| LatLngAltitudeLiteral
| LatLngLiteral
>> optional
Iterable
< LatLngAltitude
| LatLngAltitudeLiteral
| LatLngLiteral
> optional
-
<gmp-polygon-3d path="lat1,lng1,altitude1 lat2,lng2,altitude2 lat3,lng3,altitude3 ..."></gmp-polygon-3d>
string optional
-
<gmp-polygon-3d stroke-color="string"></gmp-polygon-3d>
number optional
-
<gmp-polygon-3d stroke-width="number"></gmp-polygon-3d>
number optional
-
<gmp-polygon-3d z-index="number"></gmp-polygon-3d>
Iterable
< LatLngAltitude
| LatLngAltitudeLiteral
| LatLngLiteral
> optional
Iterable
< Iterable
< LatLngAltitude
| LatLngAltitudeLiteral
| LatLngLiteral
>> optional
Methods
addEventListener(type, listener[, options])
-
type:stringA case-sensitive string representing the event type to listen for. -
listener:EventListener | EventListenerObjectThe object that receives a notification. This must be a function or an object with the handleEvent method -
options:boolean| AddEventListenerOptions optionalSee options . Custom events only supportcaptureandpassive.
void
removeEventListener(type, listener[, options])
-
type:stringA string which specifies the type of event for which to remove an event listener. -
listener:EventListener | EventListenerObjectThe event listener of the event handler to remove from the event target. -
options:boolean| EventListenerOptions optionalSee options .
void
Polygon3DElementOptions interface
google.maps.maps3d
. Polygon3DElementOptions
interface
Polygon3DElementOptions object used to define the properties that can be set on a Polygon3DElement.
Properties |
|
|---|---|
altitudeMode
optional
|
Type:
AltitudeMode
optional
|
drawsOccludedSegments
optional
|
Type:
boolean optional
|
extruded
optional
|
Type:
boolean optional
|
fillColor
optional
|
Type:
string optional
|
geodesic
optional
|
Type:
boolean optional
|
innerCoordinates
optional
|
Type:
Iterable
< Iterable
< LatLngAltitude
| LatLngAltitudeLiteral
>| Iterable
< LatLngLiteral
>> optional
|
outerCoordinates
optional
|
Type:
Iterable
< LatLngAltitude
| LatLngAltitudeLiteral
| LatLngLiteral
> optional
|
strokeColor
optional
|
Type:
string optional
|
strokeWidth
optional
|
Type:
number optional
|
zIndex
optional
|
Type:
number optional
|
Polygon3DInteractiveElement class
google.maps.maps3d
. Polygon3DInteractiveElement
class
A 3D polygon (like a 3D polyline) defines a series of connected coordinates in an ordered sequence. Additionally, polygons form a closed loop and define a filled region. Unlike Polygon3DElement
, Polygon3DInteractiveElement
receives a gmp-click
event.
Custom element: <gmp-polygon-3d-interactive></gmp-polygon-3d-interactive>
This class extends Polygon3DElement
.
This class implements Polygon3DInteractiveElementOptions
.
Access by calling const {Polygon3DInteractiveElement} = await google.maps.importLibrary("maps3d")
.See Libraries in the Maps JavaScript API
.
Constructor
Polygon3DInteractiveElement([options])
-
options:Polygon3DElementOptions optional
Polygon3DInteractiveElement
with the options specified. Properties |
|
|---|---|
Inherited:
altitudeMode
, drawsOccludedSegments
, extruded
, fillColor
, geodesic
, innerPaths
, path
, strokeColor
, strokeWidth
, zIndex
,
,
|
Methods
addEventListener(type, listener[, options])
-
type:stringA case-sensitive string representing the event type to listen for. -
listener:EventListener | EventListenerObjectThe object that receives a notification. This must be a function or an object with the handleEvent method -
options:boolean| AddEventListenerOptions optionalSee options . Custom events only supportcaptureandpassive.
void
removeEventListener(type, listener[, options])
-
type:stringA string which specifies the type of event for which to remove an event listener. -
listener:EventListener | EventListenerObjectThe event listener of the event handler to remove from the event target. -
options:boolean| EventListenerOptions optionalSee options .
void
Events
function(clickEvent)
-
clickEvent:LocationClickEventThe event object will contain the lat-lng-altitude location of the click.
Polygon3DInteractiveElementOptions interface
google.maps.maps3d
. Polygon3DInteractiveElementOptions
interface
Polygon3DInteractiveElementOptions object used to define the properties that can be set on a Polygon3DInteractiveElement.
This interface extends Polygon3DElementOptions
.
Properties |
|
|---|---|
Inherited:
altitudeMode
, drawsOccludedSegments
, extruded
, fillColor
, geodesic
, innerCoordinates
, outerCoordinates
, strokeColor
, strokeWidth
, zIndex
|
PopoverElement class
google.maps.maps3d
. PopoverElement
class
A custom HTML element that renders a popover. It looks like a bubble and is often connected to a marker.
Custom element: <gmp-popover altitude-mode="absolute" light-dismiss-disabled open position-anchor="lat,lng"></gmp-popover>
This class extends HTMLElement
.
This class implements PopoverElementOptions
.
Access by calling const {PopoverElement} = await google.maps.importLibrary("maps3d")
.See Libraries in the Maps JavaScript API
.
Constructor
PopoverElement([options])
-
options:PopoverElementOptions optional
Properties
AltitudeMode
optional
AltitudeMode.CLAMP_TO_GROUND
-
<gmp-popover altitude-mode="absolute"></gmp-popover> -
<gmp-popover altitude-mode="clamp-to-ground"></gmp-popover> -
<gmp-popover altitude-mode="relative-to-ground"></gmp-popover> -
<gmp-popover altitude-mode="relative-to-mesh"></gmp-popover>
boolean optional
false
popover="auto"
attribute which is part of the browser Popover API
.-
<gmp-popover light-dismiss-disabled></gmp-popover>
boolean optional
false
-
<gmp-popover open></gmp-popover>
LatLngLiteral
| LatLngAltitudeLiteral
| Marker3DInteractiveElement
|string optional
-
<gmp-popover position-anchor="lat,lng"></gmp-popover> -
<gmp-popover position-anchor="lat,lng,altitude"></gmp-popover> -
<gmp-popover position-anchor="marker-id"></gmp-popover>
Slots |
|
|---|---|
default
|
Places the slotted content in the main section of the popover.
|
header
|
Places the slotted content in the heading section of the popover.
|
CSS Properties |
|
|---|---|
--gmp-popover-max-width
|
Maximum width of the popover, regardless of content's width.
|
--gmp-popover-min-width
|
Minimum width of the popover, regardless of content's width. When using this property, it is strongly recommended to set it to a value less than the width of the map (in pixels).
|
--gmp-popover-pixel-offset-x
|
The offset on the x-axis, in pixels, of the tip of the popover from the point on the map at whose geographical coordinates the popover is anchored.
|
--gmp-popover-pixel-offset-y
|
The offset on the y-axis, in pixels, of the tip of the popover from the point on the map at whose geographical coordinates the popover is anchored.
|
background-color
|
The background color of the popover. See
background-color
documentation
for more details. Please note that default place popover is also affected by this property. Use targeted CSS classes or inline styles on custom popovers to avoid styling the default place popover. |
border-radius
|
The border-radius of the popover. See
border-radius
documentation
for more details. Please note that default place popover is also affected by this property. Use targeted CSS classes or inline styles on custom popovers to avoid styling the default place popover. |
box-shadow
|
The box-shadow of the popover. See
box-shadow
documentation
for more details. Please note that default place popover is also affected by this property. Use targeted CSS classes or inline styles on custom popovers to avoid styling the default place popover. |
color-scheme
|
Indicates which color scheme this popover can be rendered in. See
color-scheme
documentation
for more details. If not specified, it defaults to the user's color scheme preferences. |
padding
|
The padding of the popover. See
padding
documentation
for more details. Please note that default place popover is also affected by this property. Use targeted CSS classes or inline styles on custom popovers to avoid styling the default place popover. |
Methods
addEventListener(type, listener[, options])
-
type:stringA case-sensitive string representing the event type to listen for. -
listener:EventListener | EventListenerObjectThe object that receives a notification. This must be a function or an object with the handleEvent method -
options:boolean| AddEventListenerOptions optionalSee options . Custom events only supportcaptureandpassive.
void
removeEventListener(type, listener[, options])
-
type:stringA string which specifies the type of event for which to remove an event listener. -
listener:EventListener | EventListenerObjectThe event listener of the event handler to remove from the event target. -
options:boolean| EventListenerOptions optionalSee options .
void
PopoverElementOptions interface
google.maps.maps3d
. PopoverElementOptions
interface
PopoverElementOptions object used to define the properties that can be set on a PopoverElement.
Properties |
|
|---|---|
altitudeMode
optional
|
Type:
AltitudeMode
optional
|
lightDismissDisabled
optional
|
Type:
boolean optional
|
open
optional
|
Type:
boolean optional
|
positionAnchor
optional
|
Type:
LatLngLiteral
| LatLngAltitudeLiteral
|string| Marker3DInteractiveElement
optional
|
AltitudeMode constants
google.maps.maps3d
. AltitudeMode
constants
Specifies how altitude components in the coordinates are interpreted.
Access by calling const {AltitudeMode} = await google.maps.importLibrary("maps3d")
.See Libraries in the Maps JavaScript API
.
Constants |
|
|---|---|
ABSOLUTE
|
Allows to express objects relative to the average mean sea level. That also means that if the terrain level of detail changes underneath the object, its absolute position will remain the same. |
CLAMP_TO_GROUND
|
Allows to express objects placed on the ground. They will remain at ground level following the terrain regardless of what altitude is provided. If the object is positioned over a major body of water, it will be placed at sea level. |
RELATIVE_TO_GROUND
|
Allows to express objects relative to the ground surface. If the terrain level of detail changes, the position of the object will remain constant relative to the ground. When over water, the altitude will be interpreted as a value in meters above sea level. |
RELATIVE_TO_MESH
|
Allows to express objects relative to the highest of ground+building+water surface. When over water, this will be water surface; when over terrain, this will be the building surface (if present) or ground surface (if no buildings). |

