UI Customization  |  Maps JavaScript API  |  Google for Developers (original) (raw)

UI Customization

Stay organized with collections Save and categorize content based on your preferences.

PolylineSetupOptionsinterface

google.maps.journeySharing.PolylineSetupOptionsinterface

PolylineSetup options.

Properties
polylineOptions optional Type: PolylineOptions optional Polyline options.
visible optional Type: boolean optional Polyline visibility.

DefaultPolylineSetupOptionsinterface

google.maps.journeySharing.DefaultPolylineSetupOptionsinterface

PolylineSetup default options.

Properties
defaultPolylineOptions Type: PolylineOptions Default polyline options.
defaultVisible Type: boolean Default polyline visibility.

MarkerSetupOptionsinterface

google.maps.journeySharing.MarkerSetupOptionsinterface

MarkerSetup options.

Properties
markerOptions optional Type: MarkerOptions optional Marker options.

DefaultMarkerSetupOptionsinterface

google.maps.journeySharing.DefaultMarkerSetupOptionsinterface

MarkerSetup default options.

Properties
defaultMarkerOptions Type: MarkerOptions Default marker options.

MarkerCustomizationFunctionParamsinterface

google.maps.journeySharing.MarkerCustomizationFunctionParamsinterface

Parameters that are common to all marker customization functions. No object of this class is provided directly to any marker customization function; an object of one of its descendent classes is provided instead.

Properties
defaultOptions Type: MarkerOptions The default options used to create this marker.
isNew Type: boolean If true, the marker was newly created, and the marker customization function is being called for the first time, before the marker has been added to the map view. False otherwise.
marker Type: Marker The marker. Any customizations should be made to this object directly.

PolylineCustomizationFunctionParamsinterface

google.maps.journeySharing.PolylineCustomizationFunctionParamsinterface

Parameters that are common to all polyline customization functions. No object of this class is provided directly to any polyline customization function; an object of one of its descendent classes is provided instead.

Properties
defaultOptions Type: PolylineOptions The default options used to create this set of polylines.
isNew Type: boolean If true, the list of polylines was newly created, and the polyline customization function is being called for the first time. False otherwise.
polylines Type: Array<Polyline> The list of polylines created. They are arranged sequentially to form the rendered route.