@heycar/heycars-map 0.4.8 → 0.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/dist/api/contants.d.ts +5 -0
- package/dist/business-components/BusinessTaxiServiceMap/BusinessTaxiServiceSection.d.ts +3 -3
- package/dist/business-components/TaxiCar/TaxiCar.css.d.ts +8 -0
- package/dist/index.cjs +203 -66
- package/dist/index.js +203 -66
- package/dist/style.css +4 -1
- package/dist/utils/helper.d.ts +1 -0
- package/dist/utils/singleGeoWatch.d.ts +13 -0
- package/dist/utils/waitQueue.d.ts +7 -0
- package/package.json +1 -1
- package/todo.md +33 -32
- package/vite.config.dev.ts +3 -0
package/todo.md
CHANGED
|
@@ -4,43 +4,29 @@ https://dawchihliou.github.io/articles/building-custom-google-maps-marker-react-
|
|
|
4
4
|
3. 高德地图加载期间出现大量的请求
|
|
5
5
|
4. 做完其他事情进入首页,变成了获取定位失败,但其实 gps 是 ok 的,因为刷新页面是有点位的
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
- 5033 是否可以关闭
|
|
10
|
-
- 5177 不太明白
|
|
7
|
+
特殊
|
|
11
8
|
|
|
12
|
-
|
|
9
|
+
- 5173
|
|
10
|
+
- 5244 新开一个窗口,打开网址
|
|
13
11
|
|
|
14
|
-
|
|
15
|
-
- 5236 地图高度问题
|
|
16
|
-
- 5237
|
|
17
|
-
- 5240
|
|
12
|
+
caught (in promise) Error: Invalid Object: LngLat(NaN, NaN)
|
|
18
13
|
|
|
19
|
-
|
|
14
|
+
章新华
|
|
20
15
|
|
|
21
|
-
-
|
|
16
|
+
- 5238
|
|
22
17
|
|
|
23
|
-
|
|
18
|
+
郝瑞
|
|
24
19
|
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
- 5002
|
|
29
|
-
- 5006
|
|
30
|
-
- 5014 定位失败,文案问题
|
|
31
|
-
- 5017
|
|
32
|
-
- 5036
|
|
33
|
-
- 5092
|
|
34
|
-
- 5223
|
|
35
|
-
- 5225
|
|
36
|
-
- 5229 优先看
|
|
37
|
-
- 5238
|
|
20
|
+
- 5033 是否可以关闭
|
|
21
|
+
- 5177 不太明白
|
|
22
|
+
- 5168 需要在 获取推荐点的接口调用那里增加 地图供应商参数
|
|
38
23
|
|
|
39
24
|
不明白的
|
|
40
25
|
|
|
41
26
|
- 4843
|
|
42
27
|
- 4986
|
|
43
28
|
- 5024
|
|
29
|
+
- 5294
|
|
44
30
|
|
|
45
31
|
需要复现
|
|
46
32
|
|
|
@@ -49,13 +35,9 @@ https://dawchihliou.github.io/articles/building-custom-google-maps-marker-react-
|
|
|
49
35
|
- 5044
|
|
50
36
|
- 5113
|
|
51
37
|
- 5173
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
- 5134
|
|
56
|
-
- 5056
|
|
57
|
-
- 4939
|
|
58
|
-
- 4936
|
|
38
|
+
- 5303 需要 nearAddress 发送的经纬度
|
|
39
|
+
- 5291
|
|
40
|
+
- 5257 我的 safari 没有问题
|
|
59
41
|
|
|
60
42
|
0.4.3
|
|
61
43
|
|
|
@@ -80,3 +62,22 @@ setView 类 bug
|
|
|
80
62
|
0.4.8
|
|
81
63
|
|
|
82
64
|
- 5014
|
|
65
|
+
|
|
66
|
+
0.4.9
|
|
67
|
+
|
|
68
|
+
- 4903
|
|
69
|
+
- 5006
|
|
70
|
+
- 5017
|
|
71
|
+
- 5238
|
|
72
|
+
|
|
73
|
+
0.5.0
|
|
74
|
+
|
|
75
|
+
- 5284
|
|
76
|
+
- 5314
|
|
77
|
+
- 5313
|
|
78
|
+
- 5297
|
|
79
|
+
- 5277
|
|
80
|
+
- 5244
|
|
81
|
+
- 5198
|
|
82
|
+
- 5173
|
|
83
|
+
- 5168
|
package/vite.config.dev.ts
CHANGED
|
@@ -14,4 +14,7 @@ const pluginVue = isVue2 ? pluginVue2 : pluginVue3;
|
|
|
14
14
|
// https://vitejs.dev/config/
|
|
15
15
|
export default defineConfig({
|
|
16
16
|
plugins: [pluginVue(), vueJsx(), checker({ typescript: true }), eslint(), vanillaExtractPlugin()],
|
|
17
|
+
server: {
|
|
18
|
+
host: "0.0.0.0",
|
|
19
|
+
},
|
|
17
20
|
});
|