chore: add mobile app

This commit is contained in:
2026-02-07 22:33:02 +01:00
parent db34640acc
commit e89384ad4e
29327 changed files with 3886944 additions and 12 deletions
+35
View File
@@ -0,0 +1,35 @@
import * as React from 'react';
import { ViewProps } from 'react-native';
import { ProviderContext, NativeComponent, MapManagerCommand, UIManagerCommand } from './decorateMapComponent';
export type MapLocalTileProps = ViewProps & {
/**
* @platform iOS: Apple Maps only
* @platform Android: Supported
*/
pathTemplate: string;
/**
* @platform iOS: Apple Maps only
* @platform Android: Supported
*/
tileSize?: number;
/**
* Set to true to use pathTemplate to open files from Android's AssetManager. The default is false.
* @platform android
*/
useAssets?: boolean;
/**
* @platform iOS: Not supported
* @platform Android: Supported
*/
zIndex?: number;
};
type NativeProps = MapLocalTileProps;
export declare class MapLocalTile extends React.Component<MapLocalTileProps> {
context: React.ContextType<typeof ProviderContext>;
getNativeComponent: () => NativeComponent<NativeProps>;
getMapManagerCommand: (name: string) => MapManagerCommand;
getUIManagerCommand: (name: string) => UIManagerCommand;
render(): React.JSX.Element;
}
declare const _default: typeof MapLocalTile;
export default _default;