@react-native-ohos/react-native-map-clustering 3.4.1-rc.1 → 3.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +29 -0
- package/COMMITTERS.md +6 -0
- package/LICENSE +21 -21
- package/OAT.xml +57 -57
- package/README.OpenSource +10 -10
- package/README.md +13 -13
- package/example/.eslintrc +19 -0
- package/example/.node-version +6 -0
- package/example/.prettierrc.js +7 -0
- package/example/.watchmanconfig +6 -0
- package/example/app.json +4 -0
- package/example/babel.config.js +6 -0
- package/example/contexts.ts +9 -0
- package/example/harmony/AppScope/app.json5 +10 -0
- package/example/harmony/AppScope/resources/base/element/string.json +8 -0
- package/example/harmony/AppScope/resources/base/media/app_icon.png +0 -0
- package/example/harmony/build-profile.template.json5 +36 -0
- package/example/harmony/codelinter.json +32 -0
- package/example/harmony/entry/build-profile.json5 +22 -0
- package/example/harmony/entry/hvigorfile.ts +8 -0
- package/example/harmony/entry/oh-package.json5 +11 -0
- package/example/harmony/entry/src/main/cpp/CMakeLists.txt +42 -0
- package/example/harmony/entry/src/main/cpp/PackageProvider.cpp +17 -0
- package/example/harmony/entry/src/main/ets/RNPackagesFactory.ets +15 -0
- package/example/harmony/entry/src/main/ets/assets/fonts/Pacifico-Regular.ttf +0 -0
- package/example/harmony/entry/src/main/ets/assets/fonts/StintUltraCondensed-Regular.ttf +0 -0
- package/example/harmony/entry/src/main/ets/entryability/EntryAbility.ets +27 -0
- package/example/harmony/entry/src/main/ets/pages/Index.ets +209 -0
- package/example/harmony/entry/src/main/ets/pages/SurfaceDeadlockTest.ets +135 -0
- package/example/harmony/entry/src/main/ets/pages/TouchDisplayer.ets +44 -0
- package/example/harmony/entry/src/main/module.json5 +72 -0
- package/example/harmony/entry/src/main/resources/base/element/color.json +8 -0
- package/example/harmony/entry/src/main/resources/base/element/string.json +20 -0
- package/example/harmony/entry/src/main/resources/base/media/icon.png +0 -0
- package/example/harmony/entry/src/main/resources/base/profile/main_pages.json +5 -0
- package/example/harmony/entry/src/main/resources/rawfile/1.txt +1 -0
- package/example/harmony/format.ps1 +18 -0
- package/example/harmony/hvigor/hvigor-config.json5 +21 -0
- package/example/harmony/hvigorfile.ts +9 -0
- package/example/harmony/oh-package.json5 +12 -0
- package/example/index.js +11 -0
- package/example/jest.config.js +11 -0
- package/example/metro.config.js +30 -0
- package/example/package.json +61 -0
- package/example/react-native.config.js +11 -0
- package/example/scripts/create-build-profile.js +46 -0
- package/example/src/App.tsx +186 -0
- package/example/src/Navigation.tsx +163 -0
- package/example/src/index.tsx +59 -0
- package/example/tsconfig.json +14 -0
- package/index.d.ts +40 -40
- package/index.js +2 -2
- package/lib/ClusterHarmony.js +21 -21
- package/lib/ClusteredMapView.js +310 -310
- package/package.json +42 -42
package/package.json
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@react-native-ohos/react-native-map-clustering",
|
|
3
|
-
"harmony": {
|
|
4
|
-
"alias": "react-native-map-clustering",
|
|
5
|
-
"redirectInternalImports": true
|
|
6
|
-
},
|
|
7
|
-
"version": "3.
|
|
8
|
-
"description": "React Native Map Clustering both for Android and iOS",
|
|
9
|
-
"types": "index.d.ts",
|
|
10
|
-
"main": "index.js",
|
|
11
|
-
"scripts": {
|
|
12
|
-
"test": "jest"
|
|
13
|
-
},
|
|
14
|
-
"repository": {
|
|
15
|
-
"type": "git",
|
|
16
|
-
"url": "git+https://github.com/
|
|
17
|
-
},
|
|
18
|
-
"keywords": [
|
|
19
|
-
"react-native",
|
|
20
|
-
"react",
|
|
21
|
-
"cluster",
|
|
22
|
-
"android",
|
|
23
|
-
"iOS",
|
|
24
|
-
"map",
|
|
25
|
-
"clustering"
|
|
26
|
-
],
|
|
27
|
-
"author": "Venits",
|
|
28
|
-
"license": "MIT",
|
|
29
|
-
"bugs": {
|
|
30
|
-
"url": "https://github.com/
|
|
31
|
-
},
|
|
32
|
-
"homepage": "https://github.com/
|
|
33
|
-
"dependencies": {
|
|
34
|
-
"supercluster": "^7.1.0",
|
|
35
|
-
"@mapbox/geo-viewport": "^0.4.1"
|
|
36
|
-
},
|
|
37
|
-
"peerDependencies": {
|
|
38
|
-
"react-native-maps": "*",
|
|
39
|
-
"react-native-map-clustering": "3.4.0",
|
|
40
|
-
"react-native": "*"
|
|
41
|
-
}
|
|
42
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@react-native-ohos/react-native-map-clustering",
|
|
3
|
+
"harmony": {
|
|
4
|
+
"alias": "react-native-map-clustering",
|
|
5
|
+
"redirectInternalImports": true
|
|
6
|
+
},
|
|
7
|
+
"version": "3.5.0",
|
|
8
|
+
"description": "React Native Map Clustering both for Android and iOS",
|
|
9
|
+
"types": "index.d.ts",
|
|
10
|
+
"main": "index.js",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "jest"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/react-native-oh-library/react-native-map-clustering.git"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"react-native",
|
|
20
|
+
"react",
|
|
21
|
+
"cluster",
|
|
22
|
+
"android",
|
|
23
|
+
"iOS",
|
|
24
|
+
"map",
|
|
25
|
+
"clustering"
|
|
26
|
+
],
|
|
27
|
+
"author": "Venits",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/react-native-oh-library/react-native-map-clustering/issues"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://github.com/react-native-oh-library/react-native-map-clustering/tree/br_rnoh0.77#readme",
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"supercluster": "^7.1.0",
|
|
35
|
+
"@mapbox/geo-viewport": "^0.4.1"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"react-native-maps": "*",
|
|
39
|
+
"react-native-map-clustering": "3.4.0",
|
|
40
|
+
"react-native": "*"
|
|
41
|
+
}
|
|
42
|
+
}
|