Skip to content

Commit

Permalink
fix: documentation for MarkerOptions imgPath parameter (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
jokerttu authored Nov 20, 2024
1 parent 5c376eb commit 20c83d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/maps/mapView/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export interface CircleOptions {
export interface MarkerOptions {
/** The LatLng value for the marker's position on the map. You can change this value at any time if you want to move the marker. */
position: LatLng;
/** URL that represents the image that should be displayed in the marker instead of using the default marker pin. */
/** Path to a local image asset that should be displayed in the marker instead of using the default marker pin. */
imgPath?: string;
/** A text string that's displayed in an info window when the user taps the marker. You can change this value at any time. */
title?: string;
Expand Down

0 comments on commit 20c83d6

Please sign in to comment.