We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
updateSource
1 parent e6c89b9 commit 499e99aCopy full SHA for 499e99a
src/ui-mapbox/common.ts
@@ -629,6 +629,7 @@ export interface MapboxApi {
629
trackUser(options: TrackUserOptions, nativeMap?: any): Promise<void>;
630
631
addSource(id: string, options: AddSourceOptions, nativeMapView?: any): Promise<any>;
632
+
633
updateSource(id: string, options: UpdateSourceOptions, nativeMapView?: any): Promise<any>;
634
635
removeSource(id: string, nativeMap?: any): Promise<any>;
@@ -829,6 +830,8 @@ export interface MapboxViewApi {
829
830
831
addSource(id: string, options: AddSourceOptions): Promise<any>;
832
833
+ updateSource(id: string, options: UpdateSourceOptions): Promise<any>;
834
835
836
837
addLayer(style, belowLayerId?: string): Promise<any>;
0 commit comments