From 20c83d6f732cad94c53ddba1384f058eada972c5 Mon Sep 17 00:00:00 2001 From: Joonas Kerttula Date: Wed, 20 Nov 2024 12:47:11 +0200 Subject: [PATCH] fix: documentation for MarkerOptions imgPath parameter (#352) --- src/maps/mapView/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/maps/mapView/types.ts b/src/maps/mapView/types.ts index 5c11eb8..7b392a6 100644 --- a/src/maps/mapView/types.ts +++ b/src/maps/mapView/types.ts @@ -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;