init
This commit is contained in:
376
node_modules/@capacitor/geolocation/dist/docs.json
generated
vendored
Normal file
376
node_modules/@capacitor/geolocation/dist/docs.json
generated
vendored
Normal file
@@ -0,0 +1,376 @@
|
||||
{
|
||||
"api": {
|
||||
"name": "GeolocationPlugin",
|
||||
"slug": "geolocationplugin",
|
||||
"docs": "",
|
||||
"tags": [],
|
||||
"methods": [
|
||||
{
|
||||
"name": "getCurrentPosition",
|
||||
"signature": "(options?: PositionOptions | undefined) => Promise<Position>",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "options",
|
||||
"docs": "",
|
||||
"type": "PositionOptions | undefined"
|
||||
}
|
||||
],
|
||||
"returns": "Promise<Position>",
|
||||
"tags": [
|
||||
{
|
||||
"name": "since",
|
||||
"text": "1.0.0"
|
||||
}
|
||||
],
|
||||
"docs": "Get the current GPS location of the device",
|
||||
"complexTypes": [
|
||||
"Position",
|
||||
"PositionOptions"
|
||||
],
|
||||
"slug": "getcurrentposition"
|
||||
},
|
||||
{
|
||||
"name": "watchPosition",
|
||||
"signature": "(options: PositionOptions, callback: WatchPositionCallback) => Promise<CallbackID>",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "options",
|
||||
"docs": "",
|
||||
"type": "PositionOptions"
|
||||
},
|
||||
{
|
||||
"name": "callback",
|
||||
"docs": "",
|
||||
"type": "WatchPositionCallback"
|
||||
}
|
||||
],
|
||||
"returns": "Promise<string>",
|
||||
"tags": [
|
||||
{
|
||||
"name": "since",
|
||||
"text": "1.0.0"
|
||||
}
|
||||
],
|
||||
"docs": "Set up a watch for location changes. Note that watching for location changes\ncan consume a large amount of energy. Be smart about listening only when you need to.",
|
||||
"complexTypes": [
|
||||
"PositionOptions",
|
||||
"WatchPositionCallback",
|
||||
"CallbackID"
|
||||
],
|
||||
"slug": "watchposition"
|
||||
},
|
||||
{
|
||||
"name": "clearWatch",
|
||||
"signature": "(options: ClearWatchOptions) => Promise<void>",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "options",
|
||||
"docs": "",
|
||||
"type": "ClearWatchOptions"
|
||||
}
|
||||
],
|
||||
"returns": "Promise<void>",
|
||||
"tags": [
|
||||
{
|
||||
"name": "since",
|
||||
"text": "1.0.0"
|
||||
}
|
||||
],
|
||||
"docs": "Clear a given watch",
|
||||
"complexTypes": [
|
||||
"ClearWatchOptions"
|
||||
],
|
||||
"slug": "clearwatch"
|
||||
},
|
||||
{
|
||||
"name": "checkPermissions",
|
||||
"signature": "() => Promise<PermissionStatus>",
|
||||
"parameters": [],
|
||||
"returns": "Promise<PermissionStatus>",
|
||||
"tags": [
|
||||
{
|
||||
"name": "since",
|
||||
"text": "1.0.0"
|
||||
}
|
||||
],
|
||||
"docs": "Check location permissions. Will throw if system location services are disabled.",
|
||||
"complexTypes": [
|
||||
"PermissionStatus"
|
||||
],
|
||||
"slug": "checkpermissions"
|
||||
},
|
||||
{
|
||||
"name": "requestPermissions",
|
||||
"signature": "(permissions?: GeolocationPluginPermissions | undefined) => Promise<PermissionStatus>",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "permissions",
|
||||
"docs": "",
|
||||
"type": "GeolocationPluginPermissions | undefined"
|
||||
}
|
||||
],
|
||||
"returns": "Promise<PermissionStatus>",
|
||||
"tags": [
|
||||
{
|
||||
"name": "since",
|
||||
"text": "1.0.0"
|
||||
}
|
||||
],
|
||||
"docs": "Request location permissions. Will throw if system location services are disabled.\n\nNot available on web.",
|
||||
"complexTypes": [
|
||||
"PermissionStatus",
|
||||
"GeolocationPluginPermissions"
|
||||
],
|
||||
"slug": "requestpermissions"
|
||||
}
|
||||
],
|
||||
"properties": []
|
||||
},
|
||||
"interfaces": [
|
||||
{
|
||||
"name": "Position",
|
||||
"slug": "position",
|
||||
"docs": "",
|
||||
"tags": [],
|
||||
"methods": [],
|
||||
"properties": [
|
||||
{
|
||||
"name": "timestamp",
|
||||
"tags": [
|
||||
{
|
||||
"text": "1.0.0",
|
||||
"name": "since"
|
||||
}
|
||||
],
|
||||
"docs": "Creation timestamp for coords",
|
||||
"complexTypes": [],
|
||||
"type": "number"
|
||||
},
|
||||
{
|
||||
"name": "coords",
|
||||
"tags": [
|
||||
{
|
||||
"text": "1.0.0",
|
||||
"name": "since"
|
||||
}
|
||||
],
|
||||
"docs": "The GPS coordinates along with the accuracy of the data",
|
||||
"complexTypes": [],
|
||||
"type": "{ latitude: number; longitude: number; accuracy: number; altitudeAccuracy: number | null | undefined; altitude: number | null; speed: number | null; heading: number | null; }"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "PositionOptions",
|
||||
"slug": "positionoptions",
|
||||
"docs": "",
|
||||
"tags": [],
|
||||
"methods": [],
|
||||
"properties": [
|
||||
{
|
||||
"name": "enableHighAccuracy",
|
||||
"tags": [
|
||||
{
|
||||
"text": "false",
|
||||
"name": "default"
|
||||
},
|
||||
{
|
||||
"text": "1.0.0",
|
||||
"name": "since"
|
||||
}
|
||||
],
|
||||
"docs": "High accuracy mode (such as GPS, if available)\n\nOn Android 12+ devices it will be ignored if users didn't grant\nACCESS_FINE_LOCATION permissions (can be checked with location alias).",
|
||||
"complexTypes": [],
|
||||
"type": "boolean | undefined"
|
||||
},
|
||||
{
|
||||
"name": "timeout",
|
||||
"tags": [
|
||||
{
|
||||
"text": "10000",
|
||||
"name": "default"
|
||||
},
|
||||
{
|
||||
"text": "1.0.0",
|
||||
"name": "since"
|
||||
}
|
||||
],
|
||||
"docs": "The maximum wait time in milliseconds for location updates.\n\nIn Android, since version 7.1.0 of the plugin, it is also used to determine the\ninterval of location updates for `watchPosition`.",
|
||||
"complexTypes": [],
|
||||
"type": "number | undefined"
|
||||
},
|
||||
{
|
||||
"name": "maximumAge",
|
||||
"tags": [
|
||||
{
|
||||
"text": "0",
|
||||
"name": "default"
|
||||
},
|
||||
{
|
||||
"text": "1.0.0",
|
||||
"name": "since"
|
||||
}
|
||||
],
|
||||
"docs": "The maximum age in milliseconds of a possible cached position that is acceptable to return",
|
||||
"complexTypes": [],
|
||||
"type": "number | undefined"
|
||||
},
|
||||
{
|
||||
"name": "minimumUpdateInterval",
|
||||
"tags": [
|
||||
{
|
||||
"text": "5000",
|
||||
"name": "default"
|
||||
},
|
||||
{
|
||||
"text": "6.1.0",
|
||||
"name": "since"
|
||||
}
|
||||
],
|
||||
"docs": "The minumum update interval for location updates.\n\nIf location updates are available faster than this interval then an update\nwill only occur if the minimum update interval has expired since the last location update.\n\nThis parameter is only available for Android. It has no effect on iOS or Web platforms.",
|
||||
"complexTypes": [],
|
||||
"type": "number | undefined"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ClearWatchOptions",
|
||||
"slug": "clearwatchoptions",
|
||||
"docs": "",
|
||||
"tags": [],
|
||||
"methods": [],
|
||||
"properties": [
|
||||
{
|
||||
"name": "id",
|
||||
"tags": [],
|
||||
"docs": "",
|
||||
"complexTypes": [
|
||||
"CallbackID"
|
||||
],
|
||||
"type": "CallbackID"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "PermissionStatus",
|
||||
"slug": "permissionstatus",
|
||||
"docs": "",
|
||||
"tags": [],
|
||||
"methods": [],
|
||||
"properties": [
|
||||
{
|
||||
"name": "location",
|
||||
"tags": [
|
||||
{
|
||||
"text": "1.0.0",
|
||||
"name": "since"
|
||||
}
|
||||
],
|
||||
"docs": "Permission state for location alias.\n\nOn Android it requests/checks both ACCESS_COARSE_LOCATION and\nACCESS_FINE_LOCATION permissions.\n\nOn iOS and web it requests/checks location permission.",
|
||||
"complexTypes": [
|
||||
"PermissionState"
|
||||
],
|
||||
"type": "PermissionState"
|
||||
},
|
||||
{
|
||||
"name": "coarseLocation",
|
||||
"tags": [
|
||||
{
|
||||
"text": "1.2.0",
|
||||
"name": "since"
|
||||
}
|
||||
],
|
||||
"docs": "Permission state for coarseLocation alias.\n\nOn Android it requests/checks ACCESS_COARSE_LOCATION.\n\nOn Android 12+, users can choose between Approximate location (ACCESS_COARSE_LOCATION) or\nPrecise location (ACCESS_FINE_LOCATION), so this alias can be used if the app doesn't\nneed high accuracy.\n\nOn iOS and web it will have the same value as location alias.",
|
||||
"complexTypes": [
|
||||
"PermissionState"
|
||||
],
|
||||
"type": "PermissionState"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "GeolocationPluginPermissions",
|
||||
"slug": "geolocationpluginpermissions",
|
||||
"docs": "",
|
||||
"tags": [],
|
||||
"methods": [],
|
||||
"properties": [
|
||||
{
|
||||
"name": "permissions",
|
||||
"tags": [],
|
||||
"docs": "",
|
||||
"complexTypes": [
|
||||
"GeolocationPermissionType"
|
||||
],
|
||||
"type": "GeolocationPermissionType[]"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"enums": [],
|
||||
"typeAliases": [
|
||||
{
|
||||
"name": "WatchPositionCallback",
|
||||
"slug": "watchpositioncallback",
|
||||
"docs": "",
|
||||
"types": [
|
||||
{
|
||||
"text": "(position: Position | null, err?: any): void",
|
||||
"complexTypes": [
|
||||
"Position"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CallbackID",
|
||||
"slug": "callbackid",
|
||||
"docs": "",
|
||||
"types": [
|
||||
{
|
||||
"text": "string",
|
||||
"complexTypes": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "PermissionState",
|
||||
"slug": "permissionstate",
|
||||
"docs": "",
|
||||
"types": [
|
||||
{
|
||||
"text": "'prompt'",
|
||||
"complexTypes": []
|
||||
},
|
||||
{
|
||||
"text": "'prompt-with-rationale'",
|
||||
"complexTypes": []
|
||||
},
|
||||
{
|
||||
"text": "'granted'",
|
||||
"complexTypes": []
|
||||
},
|
||||
{
|
||||
"text": "'denied'",
|
||||
"complexTypes": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "GeolocationPermissionType",
|
||||
"slug": "geolocationpermissiontype",
|
||||
"docs": "",
|
||||
"types": [
|
||||
{
|
||||
"text": "'location'",
|
||||
"complexTypes": []
|
||||
},
|
||||
{
|
||||
"text": "'coarseLocation'",
|
||||
"complexTypes": []
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"pluginConfigs": []
|
||||
}
|
||||
187
node_modules/@capacitor/geolocation/dist/esm/definitions.d.ts
generated
vendored
Normal file
187
node_modules/@capacitor/geolocation/dist/esm/definitions.d.ts
generated
vendored
Normal file
@@ -0,0 +1,187 @@
|
||||
import type { PermissionState } from '@capacitor/core';
|
||||
export type CallbackID = string;
|
||||
export interface PermissionStatus {
|
||||
/**
|
||||
* Permission state for location alias.
|
||||
*
|
||||
* On Android it requests/checks both ACCESS_COARSE_LOCATION and
|
||||
* ACCESS_FINE_LOCATION permissions.
|
||||
*
|
||||
* On iOS and web it requests/checks location permission.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
location: PermissionState;
|
||||
/**
|
||||
* Permission state for coarseLocation alias.
|
||||
*
|
||||
* On Android it requests/checks ACCESS_COARSE_LOCATION.
|
||||
*
|
||||
* On Android 12+, users can choose between Approximate location (ACCESS_COARSE_LOCATION) or
|
||||
* Precise location (ACCESS_FINE_LOCATION), so this alias can be used if the app doesn't
|
||||
* need high accuracy.
|
||||
*
|
||||
* On iOS and web it will have the same value as location alias.
|
||||
*
|
||||
* @since 1.2.0
|
||||
*/
|
||||
coarseLocation: PermissionState;
|
||||
}
|
||||
export type GeolocationPermissionType = 'location' | 'coarseLocation';
|
||||
export interface GeolocationPluginPermissions {
|
||||
permissions: GeolocationPermissionType[];
|
||||
}
|
||||
export interface GeolocationPlugin {
|
||||
/**
|
||||
* Get the current GPS location of the device
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
getCurrentPosition(options?: PositionOptions): Promise<Position>;
|
||||
/**
|
||||
* Set up a watch for location changes. Note that watching for location changes
|
||||
* can consume a large amount of energy. Be smart about listening only when you need to.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
watchPosition(options: PositionOptions, callback: WatchPositionCallback): Promise<CallbackID>;
|
||||
/**
|
||||
* Clear a given watch
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
clearWatch(options: ClearWatchOptions): Promise<void>;
|
||||
/**
|
||||
* Check location permissions. Will throw if system location services are disabled.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
checkPermissions(): Promise<PermissionStatus>;
|
||||
/**
|
||||
* Request location permissions. Will throw if system location services are disabled.
|
||||
*
|
||||
* Not available on web.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
requestPermissions(permissions?: GeolocationPluginPermissions): Promise<PermissionStatus>;
|
||||
}
|
||||
export interface ClearWatchOptions {
|
||||
id: CallbackID;
|
||||
}
|
||||
export interface Position {
|
||||
/**
|
||||
* Creation timestamp for coords
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
timestamp: number;
|
||||
/**
|
||||
* The GPS coordinates along with the accuracy of the data
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
coords: {
|
||||
/**
|
||||
* Latitude in decimal degrees
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
latitude: number;
|
||||
/**
|
||||
* longitude in decimal degrees
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
longitude: number;
|
||||
/**
|
||||
* Accuracy level of the latitude and longitude coordinates in meters
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
accuracy: number;
|
||||
/**
|
||||
* Accuracy level of the altitude coordinate in meters, if available.
|
||||
*
|
||||
* Available on all iOS versions and on Android 8.0+.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
altitudeAccuracy: number | null | undefined;
|
||||
/**
|
||||
* The altitude the user is at (if available)
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
altitude: number | null;
|
||||
/**
|
||||
* The speed the user is traveling (if available)
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
speed: number | null;
|
||||
/**
|
||||
* The heading the user is facing (if available)
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
heading: number | null;
|
||||
};
|
||||
}
|
||||
export interface PositionOptions {
|
||||
/**
|
||||
* High accuracy mode (such as GPS, if available)
|
||||
*
|
||||
* On Android 12+ devices it will be ignored if users didn't grant
|
||||
* ACCESS_FINE_LOCATION permissions (can be checked with location alias).
|
||||
*
|
||||
* @default false
|
||||
* @since 1.0.0
|
||||
*/
|
||||
enableHighAccuracy?: boolean;
|
||||
/**
|
||||
* The maximum wait time in milliseconds for location updates.
|
||||
*
|
||||
* In Android, since version 7.1.0 of the plugin, it is also used to determine the
|
||||
* interval of location updates for `watchPosition`.
|
||||
*
|
||||
* @default 10000
|
||||
* @since 1.0.0
|
||||
*/
|
||||
timeout?: number;
|
||||
/**
|
||||
* The maximum age in milliseconds of a possible cached position that is acceptable to return
|
||||
*
|
||||
* @default 0
|
||||
* @since 1.0.0
|
||||
*/
|
||||
maximumAge?: number;
|
||||
/**
|
||||
* The minumum update interval for location updates.
|
||||
*
|
||||
* If location updates are available faster than this interval then an update
|
||||
* will only occur if the minimum update interval has expired since the last location update.
|
||||
*
|
||||
* This parameter is only available for Android. It has no effect on iOS or Web platforms.
|
||||
*
|
||||
* @default 5000
|
||||
* @since 6.1.0
|
||||
*/
|
||||
minimumUpdateInterval?: number;
|
||||
}
|
||||
export type WatchPositionCallback = (position: Position | null, err?: any) => void;
|
||||
/**
|
||||
* @deprecated Use `PositionOptions`.
|
||||
* @since 1.0.0
|
||||
*/
|
||||
export type GeolocationOptions = PositionOptions;
|
||||
/**
|
||||
* @deprecated Use `WatchPositionCallback`.
|
||||
* @since 1.0.0
|
||||
*/
|
||||
export type GeolocationWatchCallback = WatchPositionCallback;
|
||||
/**
|
||||
* @deprecated Use `Position`.
|
||||
* @since 1.0.0
|
||||
*/
|
||||
export type GeolocationPosition = Position;
|
||||
2
node_modules/@capacitor/geolocation/dist/esm/definitions.js
generated
vendored
Normal file
2
node_modules/@capacitor/geolocation/dist/esm/definitions.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
export {};
|
||||
//# sourceMappingURL=definitions.js.map
|
||||
1
node_modules/@capacitor/geolocation/dist/esm/definitions.js.map
generated
vendored
Normal file
1
node_modules/@capacitor/geolocation/dist/esm/definitions.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
4
node_modules/@capacitor/geolocation/dist/esm/index.d.ts
generated
vendored
Normal file
4
node_modules/@capacitor/geolocation/dist/esm/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
import type { GeolocationPlugin } from './definitions';
|
||||
declare const Geolocation: GeolocationPlugin;
|
||||
export * from './definitions';
|
||||
export { Geolocation };
|
||||
9
node_modules/@capacitor/geolocation/dist/esm/index.js
generated
vendored
Normal file
9
node_modules/@capacitor/geolocation/dist/esm/index.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
import { registerPlugin } from '@capacitor/core';
|
||||
import { exposeSynapse } from '@capacitor/synapse';
|
||||
const Geolocation = registerPlugin('Geolocation', {
|
||||
web: () => import('./web').then((m) => new m.GeolocationWeb()),
|
||||
});
|
||||
exposeSynapse();
|
||||
export * from './definitions';
|
||||
export { Geolocation };
|
||||
//# sourceMappingURL=index.js.map
|
||||
1
node_modules/@capacitor/geolocation/dist/esm/index.js.map
generated
vendored
Normal file
1
node_modules/@capacitor/geolocation/dist/esm/index.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAInD,MAAM,WAAW,GAAG,cAAc,CAAoB,aAAa,EAAE;IACnE,GAAG,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC,cAAc,EAAE,CAAC;CAC/D,CAAC,CAAC;AAEH,aAAa,EAAE,CAAC;AAEhB,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,WAAW,EAAE,CAAC","sourcesContent":["import { registerPlugin } from '@capacitor/core';\nimport { exposeSynapse } from '@capacitor/synapse';\n\nimport type { GeolocationPlugin } from './definitions';\n\nconst Geolocation = registerPlugin<GeolocationPlugin>('Geolocation', {\n web: () => import('./web').then((m) => new m.GeolocationWeb()),\n});\n\nexposeSynapse();\n\nexport * from './definitions';\nexport { Geolocation };\n"]}
|
||||
13
node_modules/@capacitor/geolocation/dist/esm/web.d.ts
generated
vendored
Normal file
13
node_modules/@capacitor/geolocation/dist/esm/web.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import { WebPlugin } from '@capacitor/core';
|
||||
import type { CallbackID, GeolocationPlugin, PermissionStatus, Position, PositionOptions, WatchPositionCallback } from './definitions';
|
||||
export declare class GeolocationWeb extends WebPlugin implements GeolocationPlugin {
|
||||
getCurrentPosition(options?: PositionOptions): Promise<Position>;
|
||||
watchPosition(options: PositionOptions, callback: WatchPositionCallback): Promise<CallbackID>;
|
||||
clearWatch(options: {
|
||||
id: string;
|
||||
}): Promise<void>;
|
||||
checkPermissions(): Promise<PermissionStatus>;
|
||||
requestPermissions(): Promise<PermissionStatus>;
|
||||
}
|
||||
declare const Geolocation: GeolocationWeb;
|
||||
export { Geolocation };
|
||||
38
node_modules/@capacitor/geolocation/dist/esm/web.js
generated
vendored
Normal file
38
node_modules/@capacitor/geolocation/dist/esm/web.js
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
import { WebPlugin } from '@capacitor/core';
|
||||
export class GeolocationWeb extends WebPlugin {
|
||||
async getCurrentPosition(options) {
|
||||
return new Promise((resolve, reject) => {
|
||||
navigator.geolocation.getCurrentPosition((pos) => {
|
||||
resolve(pos);
|
||||
}, (err) => {
|
||||
reject(err);
|
||||
}, Object.assign({ enableHighAccuracy: false, timeout: 10000, maximumAge: 0 }, options));
|
||||
});
|
||||
}
|
||||
async watchPosition(options, callback) {
|
||||
const id = navigator.geolocation.watchPosition((pos) => {
|
||||
callback(pos);
|
||||
}, (err) => {
|
||||
callback(null, err);
|
||||
}, Object.assign({ enableHighAccuracy: false, timeout: 10000, maximumAge: 0, minimumUpdateInterval: 5000 }, options));
|
||||
return `${id}`;
|
||||
}
|
||||
async clearWatch(options) {
|
||||
navigator.geolocation.clearWatch(parseInt(options.id, 10));
|
||||
}
|
||||
async checkPermissions() {
|
||||
if (typeof navigator === 'undefined' || !navigator.permissions) {
|
||||
throw this.unavailable('Permissions API not available in this browser');
|
||||
}
|
||||
const permission = await navigator.permissions.query({
|
||||
name: 'geolocation',
|
||||
});
|
||||
return { location: permission.state, coarseLocation: permission.state };
|
||||
}
|
||||
async requestPermissions() {
|
||||
throw this.unimplemented('Not implemented on web.');
|
||||
}
|
||||
}
|
||||
const Geolocation = new GeolocationWeb();
|
||||
export { Geolocation };
|
||||
//# sourceMappingURL=web.js.map
|
||||
1
node_modules/@capacitor/geolocation/dist/esm/web.js.map
generated
vendored
Normal file
1
node_modules/@capacitor/geolocation/dist/esm/web.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"web.js","sourceRoot":"","sources":["../../src/web.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAW5C,MAAM,OAAO,cAAe,SAAQ,SAAS;IAC3C,KAAK,CAAC,kBAAkB,CAAC,OAAyB;QAChD,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YACrC,SAAS,CAAC,WAAW,CAAC,kBAAkB,CACtC,CAAC,GAAG,EAAE,EAAE;gBACN,OAAO,CAAC,GAAG,CAAC,CAAC;YACf,CAAC,EACD,CAAC,GAAG,EAAE,EAAE;gBACN,MAAM,CAAC,GAAG,CAAC,CAAC;YACd,CAAC,kBAEC,kBAAkB,EAAE,KAAK,EACzB,OAAO,EAAE,KAAK,EACd,UAAU,EAAE,CAAC,IACV,OAAO,EAEb,CAAC;QACJ,CAAC,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,aAAa,CAAC,OAAwB,EAAE,QAA+B;QAC3E,MAAM,EAAE,GAAG,SAAS,CAAC,WAAW,CAAC,aAAa,CAC5C,CAAC,GAAG,EAAE,EAAE;YACN,QAAQ,CAAC,GAAG,CAAC,CAAC;QAChB,CAAC,EACD,CAAC,GAAG,EAAE,EAAE;YACN,QAAQ,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;QACtB,CAAC,kBAEC,kBAAkB,EAAE,KAAK,EACzB,OAAO,EAAE,KAAK,EACd,UAAU,EAAE,CAAC,EACb,qBAAqB,EAAE,IAAI,IACxB,OAAO,EAEb,CAAC;QAEF,OAAO,GAAG,EAAE,EAAE,CAAC;IACjB,CAAC;IAED,KAAK,CAAC,UAAU,CAAC,OAAuB;QACtC,SAAS,CAAC,WAAW,CAAC,UAAU,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;IAC7D,CAAC;IAED,KAAK,CAAC,gBAAgB;QACpB,IAAI,OAAO,SAAS,KAAK,WAAW,IAAI,CAAC,SAAS,CAAC,WAAW,EAAE,CAAC;YAC/D,MAAM,IAAI,CAAC,WAAW,CAAC,+CAA+C,CAAC,CAAC;QAC1E,CAAC;QAED,MAAM,UAAU,GAAG,MAAM,SAAS,CAAC,WAAW,CAAC,KAAK,CAAC;YACnD,IAAI,EAAE,aAAa;SACpB,CAAC,CAAC;QACH,OAAO,EAAE,QAAQ,EAAE,UAAU,CAAC,KAAK,EAAE,cAAc,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC;IAC1E,CAAC;IAED,KAAK,CAAC,kBAAkB;QACtB,MAAM,IAAI,CAAC,aAAa,CAAC,yBAAyB,CAAC,CAAC;IACtD,CAAC;CACF;AAED,MAAM,WAAW,GAAG,IAAI,cAAc,EAAE,CAAC;AAEzC,OAAO,EAAE,WAAW,EAAE,CAAC","sourcesContent":["import { WebPlugin } from '@capacitor/core';\n\nimport type {\n CallbackID,\n GeolocationPlugin,\n PermissionStatus,\n Position,\n PositionOptions,\n WatchPositionCallback,\n} from './definitions';\n\nexport class GeolocationWeb extends WebPlugin implements GeolocationPlugin {\n async getCurrentPosition(options?: PositionOptions): Promise<Position> {\n return new Promise((resolve, reject) => {\n navigator.geolocation.getCurrentPosition(\n (pos) => {\n resolve(pos);\n },\n (err) => {\n reject(err);\n },\n {\n enableHighAccuracy: false,\n timeout: 10000,\n maximumAge: 0,\n ...options,\n },\n );\n });\n }\n\n async watchPosition(options: PositionOptions, callback: WatchPositionCallback): Promise<CallbackID> {\n const id = navigator.geolocation.watchPosition(\n (pos) => {\n callback(pos);\n },\n (err) => {\n callback(null, err);\n },\n {\n enableHighAccuracy: false,\n timeout: 10000,\n maximumAge: 0,\n minimumUpdateInterval: 5000,\n ...options,\n },\n );\n\n return `${id}`;\n }\n\n async clearWatch(options: { id: string }): Promise<void> {\n navigator.geolocation.clearWatch(parseInt(options.id, 10));\n }\n\n async checkPermissions(): Promise<PermissionStatus> {\n if (typeof navigator === 'undefined' || !navigator.permissions) {\n throw this.unavailable('Permissions API not available in this browser');\n }\n\n const permission = await navigator.permissions.query({\n name: 'geolocation',\n });\n return { location: permission.state, coarseLocation: permission.state };\n }\n\n async requestPermissions(): Promise<PermissionStatus> {\n throw this.unimplemented('Not implemented on web.');\n }\n}\n\nconst Geolocation = new GeolocationWeb();\n\nexport { Geolocation };\n"]}
|
||||
56
node_modules/@capacitor/geolocation/dist/plugin.cjs.js
generated
vendored
Normal file
56
node_modules/@capacitor/geolocation/dist/plugin.cjs.js
generated
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var core = require('@capacitor/core');
|
||||
var synapse = require('@capacitor/synapse');
|
||||
|
||||
const Geolocation$1 = core.registerPlugin('Geolocation', {
|
||||
web: () => Promise.resolve().then(function () { return web; }).then((m) => new m.GeolocationWeb()),
|
||||
});
|
||||
synapse.exposeSynapse();
|
||||
|
||||
class GeolocationWeb extends core.WebPlugin {
|
||||
async getCurrentPosition(options) {
|
||||
return new Promise((resolve, reject) => {
|
||||
navigator.geolocation.getCurrentPosition((pos) => {
|
||||
resolve(pos);
|
||||
}, (err) => {
|
||||
reject(err);
|
||||
}, Object.assign({ enableHighAccuracy: false, timeout: 10000, maximumAge: 0 }, options));
|
||||
});
|
||||
}
|
||||
async watchPosition(options, callback) {
|
||||
const id = navigator.geolocation.watchPosition((pos) => {
|
||||
callback(pos);
|
||||
}, (err) => {
|
||||
callback(null, err);
|
||||
}, Object.assign({ enableHighAccuracy: false, timeout: 10000, maximumAge: 0, minimumUpdateInterval: 5000 }, options));
|
||||
return `${id}`;
|
||||
}
|
||||
async clearWatch(options) {
|
||||
navigator.geolocation.clearWatch(parseInt(options.id, 10));
|
||||
}
|
||||
async checkPermissions() {
|
||||
if (typeof navigator === 'undefined' || !navigator.permissions) {
|
||||
throw this.unavailable('Permissions API not available in this browser');
|
||||
}
|
||||
const permission = await navigator.permissions.query({
|
||||
name: 'geolocation',
|
||||
});
|
||||
return { location: permission.state, coarseLocation: permission.state };
|
||||
}
|
||||
async requestPermissions() {
|
||||
throw this.unimplemented('Not implemented on web.');
|
||||
}
|
||||
}
|
||||
const Geolocation = new GeolocationWeb();
|
||||
|
||||
var web = /*#__PURE__*/Object.freeze({
|
||||
__proto__: null,
|
||||
GeolocationWeb: GeolocationWeb,
|
||||
Geolocation: Geolocation
|
||||
});
|
||||
|
||||
exports.Geolocation = Geolocation$1;
|
||||
//# sourceMappingURL=plugin.cjs.js.map
|
||||
1
node_modules/@capacitor/geolocation/dist/plugin.cjs.js.map
generated
vendored
Normal file
1
node_modules/@capacitor/geolocation/dist/plugin.cjs.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"plugin.cjs.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\nimport { exposeSynapse } from '@capacitor/synapse';\nconst Geolocation = registerPlugin('Geolocation', {\n web: () => import('./web').then((m) => new m.GeolocationWeb()),\n});\nexposeSynapse();\nexport * from './definitions';\nexport { Geolocation };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nexport class GeolocationWeb extends WebPlugin {\n async getCurrentPosition(options) {\n return new Promise((resolve, reject) => {\n navigator.geolocation.getCurrentPosition((pos) => {\n resolve(pos);\n }, (err) => {\n reject(err);\n }, Object.assign({ enableHighAccuracy: false, timeout: 10000, maximumAge: 0 }, options));\n });\n }\n async watchPosition(options, callback) {\n const id = navigator.geolocation.watchPosition((pos) => {\n callback(pos);\n }, (err) => {\n callback(null, err);\n }, Object.assign({ enableHighAccuracy: false, timeout: 10000, maximumAge: 0, minimumUpdateInterval: 5000 }, options));\n return `${id}`;\n }\n async clearWatch(options) {\n navigator.geolocation.clearWatch(parseInt(options.id, 10));\n }\n async checkPermissions() {\n if (typeof navigator === 'undefined' || !navigator.permissions) {\n throw this.unavailable('Permissions API not available in this browser');\n }\n const permission = await navigator.permissions.query({\n name: 'geolocation',\n });\n return { location: permission.state, coarseLocation: permission.state };\n }\n async requestPermissions() {\n throw this.unimplemented('Not implemented on web.');\n }\n}\nconst Geolocation = new GeolocationWeb();\nexport { Geolocation };\n//# sourceMappingURL=web.js.map"],"names":["Geolocation","registerPlugin","exposeSynapse","WebPlugin"],"mappings":";;;;;;;AAEK,MAACA,aAAW,GAAGC,mBAAc,CAAC,aAAa,EAAE;AAClD,IAAI,GAAG,EAAE,MAAM,mDAAe,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,cAAc,EAAE,CAAC;AAClE,CAAC,EAAE;AACHC,qBAAa,EAAE;;ACJR,MAAM,cAAc,SAASC,cAAS,CAAC;AAC9C,IAAI,MAAM,kBAAkB,CAAC,OAAO,EAAE;AACtC,QAAQ,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;AAChD,YAAY,SAAS,CAAC,WAAW,CAAC,kBAAkB,CAAC,CAAC,GAAG,KAAK;AAC9D,gBAAgB,OAAO,CAAC,GAAG,CAAC,CAAC;AAC7B,aAAa,EAAE,CAAC,GAAG,KAAK;AACxB,gBAAgB,MAAM,CAAC,GAAG,CAAC,CAAC;AAC5B,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,kBAAkB,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC,CAAC;AACrG,SAAS,CAAC,CAAC;AACX,KAAK;AACL,IAAI,MAAM,aAAa,CAAC,OAAO,EAAE,QAAQ,EAAE;AAC3C,QAAQ,MAAM,EAAE,GAAG,SAAS,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,GAAG,KAAK;AAChE,YAAY,QAAQ,CAAC,GAAG,CAAC,CAAC;AAC1B,SAAS,EAAE,CAAC,GAAG,KAAK;AACpB,YAAY,QAAQ,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;AAChC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,kBAAkB,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,CAAC,EAAE,qBAAqB,EAAE,IAAI,EAAE,EAAE,OAAO,CAAC,CAAC,CAAC;AAC9H,QAAQ,OAAO,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC;AACvB,KAAK;AACL,IAAI,MAAM,UAAU,CAAC,OAAO,EAAE;AAC9B,QAAQ,SAAS,CAAC,WAAW,CAAC,UAAU,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;AACnE,KAAK;AACL,IAAI,MAAM,gBAAgB,GAAG;AAC7B,QAAQ,IAAI,OAAO,SAAS,KAAK,WAAW,IAAI,CAAC,SAAS,CAAC,WAAW,EAAE;AACxE,YAAY,MAAM,IAAI,CAAC,WAAW,CAAC,+CAA+C,CAAC,CAAC;AACpF,SAAS;AACT,QAAQ,MAAM,UAAU,GAAG,MAAM,SAAS,CAAC,WAAW,CAAC,KAAK,CAAC;AAC7D,YAAY,IAAI,EAAE,aAAa;AAC/B,SAAS,CAAC,CAAC;AACX,QAAQ,OAAO,EAAE,QAAQ,EAAE,UAAU,CAAC,KAAK,EAAE,cAAc,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC;AAChF,KAAK;AACL,IAAI,MAAM,kBAAkB,GAAG;AAC/B,QAAQ,MAAM,IAAI,CAAC,aAAa,CAAC,yBAAyB,CAAC,CAAC;AAC5D,KAAK;AACL,CAAC;AACD,MAAM,WAAW,GAAG,IAAI,cAAc,EAAE;;;;;;;;;;"}
|
||||
58
node_modules/@capacitor/geolocation/dist/plugin.js
generated
vendored
Normal file
58
node_modules/@capacitor/geolocation/dist/plugin.js
generated
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
var capacitorGeolocationPluginCapacitor = (function (exports, core, synapse) {
|
||||
'use strict';
|
||||
|
||||
const Geolocation$1 = core.registerPlugin('Geolocation', {
|
||||
web: () => Promise.resolve().then(function () { return web; }).then((m) => new m.GeolocationWeb()),
|
||||
});
|
||||
synapse.exposeSynapse();
|
||||
|
||||
class GeolocationWeb extends core.WebPlugin {
|
||||
async getCurrentPosition(options) {
|
||||
return new Promise((resolve, reject) => {
|
||||
navigator.geolocation.getCurrentPosition((pos) => {
|
||||
resolve(pos);
|
||||
}, (err) => {
|
||||
reject(err);
|
||||
}, Object.assign({ enableHighAccuracy: false, timeout: 10000, maximumAge: 0 }, options));
|
||||
});
|
||||
}
|
||||
async watchPosition(options, callback) {
|
||||
const id = navigator.geolocation.watchPosition((pos) => {
|
||||
callback(pos);
|
||||
}, (err) => {
|
||||
callback(null, err);
|
||||
}, Object.assign({ enableHighAccuracy: false, timeout: 10000, maximumAge: 0, minimumUpdateInterval: 5000 }, options));
|
||||
return `${id}`;
|
||||
}
|
||||
async clearWatch(options) {
|
||||
navigator.geolocation.clearWatch(parseInt(options.id, 10));
|
||||
}
|
||||
async checkPermissions() {
|
||||
if (typeof navigator === 'undefined' || !navigator.permissions) {
|
||||
throw this.unavailable('Permissions API not available in this browser');
|
||||
}
|
||||
const permission = await navigator.permissions.query({
|
||||
name: 'geolocation',
|
||||
});
|
||||
return { location: permission.state, coarseLocation: permission.state };
|
||||
}
|
||||
async requestPermissions() {
|
||||
throw this.unimplemented('Not implemented on web.');
|
||||
}
|
||||
}
|
||||
const Geolocation = new GeolocationWeb();
|
||||
|
||||
var web = /*#__PURE__*/Object.freeze({
|
||||
__proto__: null,
|
||||
GeolocationWeb: GeolocationWeb,
|
||||
Geolocation: Geolocation
|
||||
});
|
||||
|
||||
exports.Geolocation = Geolocation$1;
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
return exports;
|
||||
|
||||
})({}, capacitorExports, synapse);
|
||||
//# sourceMappingURL=plugin.js.map
|
||||
1
node_modules/@capacitor/geolocation/dist/plugin.js.map
generated
vendored
Normal file
1
node_modules/@capacitor/geolocation/dist/plugin.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"plugin.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\nimport { exposeSynapse } from '@capacitor/synapse';\nconst Geolocation = registerPlugin('Geolocation', {\n web: () => import('./web').then((m) => new m.GeolocationWeb()),\n});\nexposeSynapse();\nexport * from './definitions';\nexport { Geolocation };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nexport class GeolocationWeb extends WebPlugin {\n async getCurrentPosition(options) {\n return new Promise((resolve, reject) => {\n navigator.geolocation.getCurrentPosition((pos) => {\n resolve(pos);\n }, (err) => {\n reject(err);\n }, Object.assign({ enableHighAccuracy: false, timeout: 10000, maximumAge: 0 }, options));\n });\n }\n async watchPosition(options, callback) {\n const id = navigator.geolocation.watchPosition((pos) => {\n callback(pos);\n }, (err) => {\n callback(null, err);\n }, Object.assign({ enableHighAccuracy: false, timeout: 10000, maximumAge: 0, minimumUpdateInterval: 5000 }, options));\n return `${id}`;\n }\n async clearWatch(options) {\n navigator.geolocation.clearWatch(parseInt(options.id, 10));\n }\n async checkPermissions() {\n if (typeof navigator === 'undefined' || !navigator.permissions) {\n throw this.unavailable('Permissions API not available in this browser');\n }\n const permission = await navigator.permissions.query({\n name: 'geolocation',\n });\n return { location: permission.state, coarseLocation: permission.state };\n }\n async requestPermissions() {\n throw this.unimplemented('Not implemented on web.');\n }\n}\nconst Geolocation = new GeolocationWeb();\nexport { Geolocation };\n//# sourceMappingURL=web.js.map"],"names":["Geolocation","registerPlugin","exposeSynapse","WebPlugin"],"mappings":";;;AAEK,UAACA,aAAW,GAAGC,mBAAc,CAAC,aAAa,EAAE;IAClD,IAAI,GAAG,EAAE,MAAM,mDAAe,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,cAAc,EAAE,CAAC;IAClE,CAAC,EAAE;AACHC,yBAAa,EAAE;;ICJR,MAAM,cAAc,SAASC,cAAS,CAAC;IAC9C,IAAI,MAAM,kBAAkB,CAAC,OAAO,EAAE;IACtC,QAAQ,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;IAChD,YAAY,SAAS,CAAC,WAAW,CAAC,kBAAkB,CAAC,CAAC,GAAG,KAAK;IAC9D,gBAAgB,OAAO,CAAC,GAAG,CAAC,CAAC;IAC7B,aAAa,EAAE,CAAC,GAAG,KAAK;IACxB,gBAAgB,MAAM,CAAC,GAAG,CAAC,CAAC;IAC5B,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,kBAAkB,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC,CAAC;IACrG,SAAS,CAAC,CAAC;IACX,KAAK;IACL,IAAI,MAAM,aAAa,CAAC,OAAO,EAAE,QAAQ,EAAE;IAC3C,QAAQ,MAAM,EAAE,GAAG,SAAS,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,GAAG,KAAK;IAChE,YAAY,QAAQ,CAAC,GAAG,CAAC,CAAC;IAC1B,SAAS,EAAE,CAAC,GAAG,KAAK;IACpB,YAAY,QAAQ,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAChC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,kBAAkB,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,CAAC,EAAE,qBAAqB,EAAE,IAAI,EAAE,EAAE,OAAO,CAAC,CAAC,CAAC;IAC9H,QAAQ,OAAO,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC;IACvB,KAAK;IACL,IAAI,MAAM,UAAU,CAAC,OAAO,EAAE;IAC9B,QAAQ,SAAS,CAAC,WAAW,CAAC,UAAU,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;IACnE,KAAK;IACL,IAAI,MAAM,gBAAgB,GAAG;IAC7B,QAAQ,IAAI,OAAO,SAAS,KAAK,WAAW,IAAI,CAAC,SAAS,CAAC,WAAW,EAAE;IACxE,YAAY,MAAM,IAAI,CAAC,WAAW,CAAC,+CAA+C,CAAC,CAAC;IACpF,SAAS;IACT,QAAQ,MAAM,UAAU,GAAG,MAAM,SAAS,CAAC,WAAW,CAAC,KAAK,CAAC;IAC7D,YAAY,IAAI,EAAE,aAAa;IAC/B,SAAS,CAAC,CAAC;IACX,QAAQ,OAAO,EAAE,QAAQ,EAAE,UAAU,CAAC,KAAK,EAAE,cAAc,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC;IAChF,KAAK;IACL,IAAI,MAAM,kBAAkB,GAAG;IAC/B,QAAQ,MAAM,IAAI,CAAC,aAAa,CAAC,yBAAyB,CAAC,CAAC;IAC5D,KAAK;IACL,CAAC;IACD,MAAM,WAAW,GAAG,IAAI,cAAc,EAAE;;;;;;;;;;;;;;;;;;"}
|
||||
Reference in New Issue
Block a user