@heycar/heycars-map 0.1.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.
Files changed (191) hide show
  1. package/.eslintrc.json +15 -0
  2. package/README.md +18 -0
  3. package/dist/App.d.ts +1 -0
  4. package/dist/api/driving.d.ts +12 -0
  5. package/dist/api/geocoder.d.ts +16 -0
  6. package/dist/api/geometry.d.ts +20 -0
  7. package/dist/api/place.d.ts +16 -0
  8. package/dist/business-components/AddressBox/AddressBox.css.d.ts +7 -0
  9. package/dist/business-components/AddressBox/AddressBox.d.ts +10 -0
  10. package/dist/business-components/AddressBox/index.d.ts +1 -0
  11. package/dist/business-components/AddressLocator/AddressLocator.css.d.ts +1 -0
  12. package/dist/business-components/AddressLocator/AddressLocator.d.ts +7 -0
  13. package/dist/business-components/AddressLocator/index.d.ts +1 -0
  14. package/dist/business-components/DrivingLine/DrivingLine.css.d.ts +1 -0
  15. package/dist/business-components/DrivingLine/DrivingLine.d.ts +6 -0
  16. package/dist/business-components/DrivingLine/index.d.ts +1 -0
  17. package/dist/business-components/PassengerCircle/PassengerCircle.css.d.ts +1 -0
  18. package/dist/business-components/PassengerCircle/PassengerCircle.d.ts +7 -0
  19. package/dist/business-components/PassengerCircle/index.d.ts +1 -0
  20. package/dist/business-components/PlaceCircle/PlaceCircle.css.d.ts +5 -0
  21. package/dist/business-components/PlaceCircle/PlaceCircle.d.ts +8 -0
  22. package/dist/business-components/PlaceCircle/index.d.ts +1 -0
  23. package/dist/business-components/StartEndPoint/StartEndPoint.css.d.ts +20 -0
  24. package/dist/business-components/StartEndPoint/StartEndPoint.d.ts +9 -0
  25. package/dist/business-components/StartEndPoint/index.d.ts +1 -0
  26. package/dist/business-components/TaxiCar/TaxiCar.css.d.ts +3 -0
  27. package/dist/business-components/TaxiCar/TaxiCar.d.ts +8 -0
  28. package/dist/business-components/TaxiCar/index.d.ts +1 -0
  29. package/dist/business-components/WalkingLine/WalkingLine.d.ts +6 -0
  30. package/dist/business-components/WalkingLine/index.d.ts +1 -0
  31. package/dist/business-components/WaveCircle/WaveCircle.css.d.ts +4 -0
  32. package/dist/business-components/WaveCircle/WaveCircle.d.ts +6 -0
  33. package/dist/business-components/WaveCircle/index.d.ts +1 -0
  34. package/dist/components/Amap/Amap.css.d.ts +1 -0
  35. package/dist/components/Amap/Amap.d.ts +7 -0
  36. package/dist/components/Amap/index.d.ts +1 -0
  37. package/dist/components/Amap/useAmap.d.ts +399 -0
  38. package/dist/components/AmapInfoWindow/AmapInfoWindow.d.ts +4 -0
  39. package/dist/components/AmapInfoWindow/index.d.ts +1 -0
  40. package/dist/components/AmapLoader/AmapLoader.d.ts +20 -0
  41. package/dist/components/AmapLoader/index.d.ts +1 -0
  42. package/dist/components/AmapMarker/AmapMarker.d.ts +2 -0
  43. package/dist/components/AmapMarker/index.d.ts +1 -0
  44. package/dist/components/AmapPolygon/AmapPolygon.d.ts +2 -0
  45. package/dist/components/AmapPolygon/index.d.ts +1 -0
  46. package/dist/components/AmapPolyline/AmapPolyline.d.ts +2 -0
  47. package/dist/components/AmapPolyline/index.d.ts +1 -0
  48. package/dist/components/AmapText/AmapText.d.ts +2 -0
  49. package/dist/components/AmapText/index.d.ts +1 -0
  50. package/dist/components/Demo/BusinessDemo.d.ts +2 -0
  51. package/dist/components/Demo/Demo.css.d.ts +1 -0
  52. package/dist/components/Demo/Demo.d.ts +2 -0
  53. package/dist/components/Demo/Hello.d.ts +17 -0
  54. package/dist/components/Demo/HeycarDemo.d.ts +1 -0
  55. package/dist/components/Demo/index.d.ts +1 -0
  56. package/dist/components/Gmap/Gmap.d.ts +5 -0
  57. package/dist/components/Gmap/index.d.ts +1 -0
  58. package/dist/components/Gmap/useGmap.d.ts +5 -0
  59. package/dist/components/GmapAdvancedMarkerView/GmapAdvancedMarkerView.d.ts +3 -0
  60. package/dist/components/GmapAdvancedMarkerView/index.d.ts +1 -0
  61. package/dist/components/GmapInfoWindow/GmapInfoWindow.d.ts +5 -0
  62. package/dist/components/GmapInfoWindow/index.d.ts +1 -0
  63. package/dist/components/GmapLoader/GmapLoader.d.ts +37 -0
  64. package/dist/components/GmapLoader/index.d.ts +1 -0
  65. package/dist/components/GmapMarker/GmapMarker.d.ts +3 -0
  66. package/dist/components/GmapMarker/index.d.ts +1 -0
  67. package/dist/components/GmapPolygon/GmapPolygon.d.ts +3 -0
  68. package/dist/components/GmapPolygon/index.d.ts +1 -0
  69. package/dist/components/GmapPolyline/GmapPolyline.d.ts +3 -0
  70. package/dist/components/GmapPolyline/index.d.ts +1 -0
  71. package/dist/components/MapProvider/MapProvider.d.ts +7 -0
  72. package/dist/components/MapProvider/index.d.ts +1 -0
  73. package/dist/components/MapProvider/useMapSupplier.d.ts +11 -0
  74. package/dist/index.cjs +70 -0
  75. package/dist/index.d.ts +14 -0
  76. package/dist/index.js +1498 -0
  77. package/dist/main.d.ts +1 -0
  78. package/dist/style.css +1 -0
  79. package/dist/types/amap/marker.d.ts +11 -0
  80. package/dist/types/helper.d.ts +30 -0
  81. package/dist/types/interface.d.ts +1 -0
  82. package/dist/utils/compare.d.ts +21 -0
  83. package/dist/utils/dom.d.ts +2 -0
  84. package/dist/utils/transform.d.ts +9 -0
  85. package/dist/vite.svg +1 -0
  86. package/esbuild.mjs +40 -0
  87. package/index.html +13 -0
  88. package/package.json +94 -0
  89. package/public/vite.svg +1 -0
  90. package/src/App.tsx +10 -0
  91. package/src/api/driving.ts +87 -0
  92. package/src/api/geocoder.ts +88 -0
  93. package/src/api/geometry.ts +44 -0
  94. package/src/api/place.ts +107 -0
  95. package/src/assets/icons/svg/address-locator.svg +1 -0
  96. package/src/assets/icons/svg/arrow-right.svg +1 -0
  97. package/src/assets/icons/svg/end-point.svg +1 -0
  98. package/src/assets/icons/svg/passenger-circle.svg +1 -0
  99. package/src/assets/icons/svg/place-circle.svg +22 -0
  100. package/src/assets/icons/svg/start-point.svg +1 -0
  101. package/src/assets/icons/svg/taxi-car.svg +1 -0
  102. package/src/assets/icons/svg/wave-circle.svg +1 -0
  103. package/src/business-components/AddressBox/AddressBox.css.ts +55 -0
  104. package/src/business-components/AddressBox/AddressBox.tsx +69 -0
  105. package/src/business-components/AddressBox/index.ts +1 -0
  106. package/src/business-components/AddressLocator/AddressLocator.css.ts +7 -0
  107. package/src/business-components/AddressLocator/AddressLocator.tsx +40 -0
  108. package/src/business-components/AddressLocator/index.ts +1 -0
  109. package/src/business-components/DrivingLine/DrivingLine.css.ts +10 -0
  110. package/src/business-components/DrivingLine/DrivingLine.tsx +124 -0
  111. package/src/business-components/DrivingLine/index.ts +1 -0
  112. package/src/business-components/PassengerCircle/PassengerCircle.css.ts +8 -0
  113. package/src/business-components/PassengerCircle/PassengerCircle.tsx +42 -0
  114. package/src/business-components/PassengerCircle/index.ts +1 -0
  115. package/src/business-components/PlaceCircle/PlaceCircle.css.ts +30 -0
  116. package/src/business-components/PlaceCircle/PlaceCircle.tsx +66 -0
  117. package/src/business-components/PlaceCircle/index.ts +1 -0
  118. package/src/business-components/StartEndPoint/StartEndPoint.css.ts +70 -0
  119. package/src/business-components/StartEndPoint/StartEndPoint.tsx +103 -0
  120. package/src/business-components/StartEndPoint/index.ts +1 -0
  121. package/src/business-components/TaxiCar/TaxiCar.css.ts +16 -0
  122. package/src/business-components/TaxiCar/TaxiCar.tsx +77 -0
  123. package/src/business-components/TaxiCar/index.ts +1 -0
  124. package/src/business-components/WalkingLine/WalkingLine.tsx +73 -0
  125. package/src/business-components/WalkingLine/index.ts +1 -0
  126. package/src/business-components/WaveCircle/WaveCircle.css.ts +54 -0
  127. package/src/business-components/WaveCircle/WaveCircle.tsx +56 -0
  128. package/src/business-components/WaveCircle/index.ts +1 -0
  129. package/src/components/Amap/Amap.css.ts +3 -0
  130. package/src/components/Amap/Amap.ts +58 -0
  131. package/src/components/Amap/index.ts +1 -0
  132. package/src/components/Amap/useAmap.ts +9 -0
  133. package/src/components/AmapInfoWindow/AmapInfoWindow.ts +45 -0
  134. package/src/components/AmapInfoWindow/index.ts +1 -0
  135. package/src/components/AmapLoader/AmapLoader.ts +68 -0
  136. package/src/components/AmapLoader/index.ts +1 -0
  137. package/src/components/AmapMarker/AmapMarker.ts +38 -0
  138. package/src/components/AmapMarker/index.ts +1 -0
  139. package/src/components/AmapPolygon/AmapPolygon.ts +41 -0
  140. package/src/components/AmapPolygon/index.ts +1 -0
  141. package/src/components/AmapPolyline/AmapPolyline.ts +40 -0
  142. package/src/components/AmapPolyline/index.ts +1 -0
  143. package/src/components/AmapText/AmapText.ts +39 -0
  144. package/src/components/AmapText/index.ts +1 -0
  145. package/src/components/Demo/BusinessDemo.tsx +117 -0
  146. package/src/components/Demo/Demo.css.ts +6 -0
  147. package/src/components/Demo/Demo.tsx +97 -0
  148. package/src/components/Demo/Hello.tsx +15 -0
  149. package/src/components/Demo/HeycarDemo.tsx +31 -0
  150. package/src/components/Demo/TemplateDemo.vue +11 -0
  151. package/src/components/Demo/index.ts +1 -0
  152. package/src/components/Gmap/Gmap.ts +34 -0
  153. package/src/components/Gmap/index.ts +1 -0
  154. package/src/components/Gmap/useGmap.ts +7 -0
  155. package/src/components/GmapAdvancedMarkerView/GmapAdvancedMarkerView.ts +48 -0
  156. package/src/components/GmapAdvancedMarkerView/index.ts +1 -0
  157. package/src/components/GmapInfoWindow/GmapInfoWindow.ts +38 -0
  158. package/src/components/GmapInfoWindow/index.ts +1 -0
  159. package/src/components/GmapLoader/GmapLoader.ts +79 -0
  160. package/src/components/GmapLoader/index.ts +1 -0
  161. package/src/components/GmapMarker/GmapMarker.ts +31 -0
  162. package/src/components/GmapMarker/index.ts +1 -0
  163. package/src/components/GmapPolygon/GmapPolygon.ts +29 -0
  164. package/src/components/GmapPolygon/index.ts +1 -0
  165. package/src/components/GmapPolyline/GmapPolyline.ts +29 -0
  166. package/src/components/GmapPolyline/index.ts +1 -0
  167. package/src/components/MapProvider/MapProvider.tsx +64 -0
  168. package/src/components/MapProvider/index.ts +1 -0
  169. package/src/components/MapProvider/useMapSupplier.ts +19 -0
  170. package/src/index.ts +14 -0
  171. package/src/main.ts +6 -0
  172. package/src/style.css +0 -0
  173. package/src/types/amap/autocomplete.d.ts +64 -0
  174. package/src/types/amap/driving.d.ts +168 -0
  175. package/src/types/amap/geocoder.d.ts +214 -0
  176. package/src/types/amap/marker.ts +11 -0
  177. package/src/types/amap/place.d.ts +114 -0
  178. package/src/types/amap/plugin.d.ts +27 -0
  179. package/src/types/amap/walking.d.ts +76 -0
  180. package/src/types/global.d.ts +10 -0
  181. package/src/types/helper.ts +139 -0
  182. package/src/types/interface.ts +1 -0
  183. package/src/utils/compare.ts +174 -0
  184. package/src/utils/dom.ts +14 -0
  185. package/src/utils/transform.ts +27 -0
  186. package/src/vite-env.d.ts +12 -0
  187. package/todo.md +1 -0
  188. package/tsconfig.json +25 -0
  189. package/tsconfig.node.json +9 -0
  190. package/vite.config.dev.ts +17 -0
  191. package/vite.config.ts +40 -0
package/.eslintrc.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "extends": [
3
+ "eslint:recommended",
4
+ "plugin:vue/vue3-recommended",
5
+ "@vue/typescript/recommended",
6
+ "prettier"
7
+ ],
8
+ "rules": {
9
+ "@typescript-eslint/no-explicit-any": "off",
10
+ "vue/require-explicit-emits": "off",
11
+ "vue/one-component-per-file": "off",
12
+ "no-debugger": "off",
13
+ "@typescript-eslint/no-unused-vars": ["warn", { "ignoreRestSiblings": true }]
14
+ }
15
+ }
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # Vue 3 + TypeScript + Vite
2
+
3
+ This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
+
5
+ ## Recommended IDE Setup
6
+
7
+ - [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
8
+
9
+ ## Type Support For `.vue` Imports in TS
10
+
11
+ TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
12
+
13
+ If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
14
+
15
+ 1. Disable the built-in TypeScript Extension
16
+ 1. Run `Extensions: Show Built-in Extensions` from VSCode's command palette
17
+ 2. Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
18
+ 2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
package/dist/App.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare const App: import("vue-demi").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue-demi").ExtractPropTypes<{}>>, {}>;
@@ -0,0 +1,12 @@
1
+ /// <reference types="google.maps" />
2
+ import type { ApiMapMeta } from "./geometry";
3
+ export interface ApiDrivingGetAddressProps extends ApiMapMeta {
4
+ origin: [number, number];
5
+ destination: [number, number];
6
+ }
7
+ export declare const apiDrivingGetAddress: (props: ApiDrivingGetAddressProps) => Promise<AMap.DrivingResult | undefined | google.maps.DirectionsResult>;
8
+ export interface ApiWalkingGetAddressProps extends ApiMapMeta {
9
+ origin: [number, number];
10
+ destination: [number, number];
11
+ }
12
+ export declare const apiWalkingGetAddress: (props: ApiWalkingGetAddressProps) => Promise<AMap.WalkingResult | undefined | google.maps.DirectionsResult>;
@@ -0,0 +1,16 @@
1
+ /// <reference types="google.maps" />
2
+ import type { ApiMapMeta } from "./geometry";
3
+ export interface ApiGeocoderGetAddressProps extends ApiMapMeta {
4
+ location: [number, number];
5
+ country?: string;
6
+ city?: string;
7
+ lang?: string;
8
+ }
9
+ export declare const apiGeocoderGetAddress: (props: ApiGeocoderGetAddressProps) => Promise<AMap.ReGeocoderResult | undefined | google.maps.GeocoderResult[]>;
10
+ export interface ApiGeocoderGetAddressProps extends ApiMapMeta {
11
+ address: string;
12
+ country?: string;
13
+ city?: string;
14
+ lang?: string;
15
+ }
16
+ export declare const apiGeocoderGetLocation: (props: ApiGeocoderGetAddressProps) => Promise<AMap.GeocoderResult | undefined | google.maps.GeocoderResult[]>;
@@ -0,0 +1,20 @@
1
+ export interface ApiMapMeta {
2
+ isGoogle: boolean;
3
+ }
4
+ type Point = [number, number];
5
+ export interface DistanceOfLineProps extends ApiMapMeta {
6
+ path: Point[];
7
+ }
8
+ export declare function apiDistanceOfLine(props: DistanceOfLineProps): number;
9
+ export interface IsPointInRingProps extends ApiMapMeta {
10
+ point: Point;
11
+ path: Point[];
12
+ }
13
+ export declare function apiIsPointInRing(props: IsPointInRingProps): boolean;
14
+ export interface IsPointInLineProps extends ApiMapMeta {
15
+ point: Point;
16
+ path: Point[];
17
+ tolerance: number;
18
+ }
19
+ export declare function apiIsPointInLine(props: IsPointInLineProps): boolean;
20
+ export {};
@@ -0,0 +1,16 @@
1
+ /// <reference types="google.maps" />
2
+ import type { ApiMapMeta } from "./geometry";
3
+ export interface ApiAutoCompleteSearchProps extends ApiMapMeta {
4
+ keyword: string;
5
+ country?: string;
6
+ city?: string;
7
+ lang?: string;
8
+ }
9
+ export declare const apiAutoCompleteSearch: (props: ApiAutoCompleteSearchProps) => Promise<AMap.AutocompleteResult | undefined | google.maps.places.AutocompletePrediction[]>;
10
+ export interface ApiPlaceSearchInBoundsProps extends ApiMapMeta {
11
+ keyword: string;
12
+ bounds: [[number, number], [number, number]];
13
+ lang?: string;
14
+ map?: google.maps.Map;
15
+ }
16
+ export declare const apiPlaceSearchInBounds: (props: ApiPlaceSearchInBoundsProps) => Promise<AMap.PlaceSearchResult | undefined | google.maps.places.PlaceResult[]>;
@@ -0,0 +1,7 @@
1
+ export declare const addressBoxLayout: string;
2
+ export declare const addressBox: string;
3
+ export declare const addressTitle: string;
4
+ export declare const addressDescription: string;
5
+ export declare const arrowIcon: string;
6
+ export declare const verticalLine: string;
7
+ export declare const circleIcon: string;
@@ -0,0 +1,10 @@
1
+ import type { Point } from "../../types/interface";
2
+ interface AddressBoxProps {
3
+ position: Point;
4
+ title: string;
5
+ description?: string;
6
+ }
7
+ export declare const AAddressBox: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<AddressBoxProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<AddressBoxProps, Required<AddressBoxProps>>, never, AddressBoxProps, {}>;
8
+ export declare const GAddressBox: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<AddressBoxProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<AddressBoxProps, Required<AddressBoxProps>>, never, AddressBoxProps, {}>;
9
+ export declare const AddressBox: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<AddressBoxProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<AddressBoxProps, Required<AddressBoxProps>>, never, AddressBoxProps, {}>;
10
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./AddressBox";
@@ -0,0 +1 @@
1
+ export declare const addressLocator: string;
@@ -0,0 +1,7 @@
1
+ interface AddressLocatorProps {
2
+ position: [number, number];
3
+ }
4
+ export declare const AAddressLocator: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<AddressLocatorProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<AddressLocatorProps, Required<AddressLocatorProps>>, never, AddressLocatorProps, {}>;
5
+ export declare const GAddressLocator: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<AddressLocatorProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<AddressLocatorProps, Required<AddressLocatorProps>>, never, AddressLocatorProps, {}>;
6
+ export declare const AddressLocator: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<AddressLocatorProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<AddressLocatorProps, Required<AddressLocatorProps>>, never, AddressLocatorProps, {}>;
7
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./AddressLocator";
@@ -0,0 +1 @@
1
+ export declare const drivingPath: string;
@@ -0,0 +1,6 @@
1
+ export interface DrivingLineProps {
2
+ path: [number, number][];
3
+ }
4
+ export declare const ADrivingLine: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<DrivingLineProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<DrivingLineProps, Required<DrivingLineProps>>, never, DrivingLineProps, {}>;
5
+ export declare const GDrivingLine: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<DrivingLineProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<DrivingLineProps, Required<DrivingLineProps>>, never, DrivingLineProps, {}>;
6
+ export declare const DrivingLine: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<DrivingLineProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<DrivingLineProps, Required<DrivingLineProps>>, never, DrivingLineProps, {}>;
@@ -0,0 +1 @@
1
+ export * from "./DrivingLine";
@@ -0,0 +1 @@
1
+ export declare const passengerCircle: string;
@@ -0,0 +1,7 @@
1
+ interface PassengerCircleProps {
2
+ position: [number, number];
3
+ }
4
+ export declare const APassengerCircle: import("vue").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<PassengerCircleProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<PassengerCircleProps, Required<PassengerCircleProps>>, never, PassengerCircleProps, {}>;
5
+ export declare const GPassengerCircle: import("vue").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<PassengerCircleProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<PassengerCircleProps, Required<PassengerCircleProps>>, never, PassengerCircleProps, {}>;
6
+ export declare const PassengerCircle: import("vue").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<PassengerCircleProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<PassengerCircleProps, Required<PassengerCircleProps>>, never, PassengerCircleProps, {}>;
7
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./PassengerCircle";
@@ -0,0 +1,5 @@
1
+ export declare const placeCircleLayout: string;
2
+ export declare const amapPlaceIconLayout: string;
3
+ export declare const gmapPlaceIconLayout: string;
4
+ export declare const placeIcon: string;
5
+ export declare const label: string;
@@ -0,0 +1,8 @@
1
+ interface PlaceCircleProps {
2
+ position: [number, number];
3
+ label?: string;
4
+ }
5
+ export declare const APlaceCircle: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<PlaceCircleProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<PlaceCircleProps, Required<PlaceCircleProps>>, never, PlaceCircleProps, {}>;
6
+ export declare const GPlaceCircle: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<PlaceCircleProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<PlaceCircleProps, Required<PlaceCircleProps>>, never, PlaceCircleProps, {}>;
7
+ export declare const PlaceCircle: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<PlaceCircleProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<PlaceCircleProps, Required<PlaceCircleProps>>, never, PlaceCircleProps, {}>;
8
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./PlaceCircle";
@@ -0,0 +1,20 @@
1
+ export declare const pointLayout: string;
2
+ export declare const pointInfoBox: string;
3
+ export declare const pointSingleInfoBox: string;
4
+ export declare const pointInfoBoxTitle: string;
5
+ export declare const pointInfoBoxDescription: string;
6
+ export declare const pointInfoBoxEmphasize: string;
7
+ export declare const pointIcon: import("@vanilla-extract/recipes").RuntimeFn<{
8
+ type: {
9
+ start: {
10
+ marginTop: "1.33vw";
11
+ width: "6.192vw";
12
+ height: "7.998vw";
13
+ };
14
+ end: {
15
+ marginTop: "2.4vw";
16
+ width: "6.192vw";
17
+ height: "7.998vw";
18
+ };
19
+ };
20
+ }>;
@@ -0,0 +1,9 @@
1
+ export interface StartEndPointProps {
2
+ type: "start" | "end";
3
+ position: [number, number];
4
+ title?: string;
5
+ description?: string;
6
+ }
7
+ export declare const AStartEndPoint: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<StartEndPointProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<StartEndPointProps, Required<StartEndPointProps>>, never, StartEndPointProps, {}>;
8
+ export declare const GStartEndPoint: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<StartEndPointProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<StartEndPointProps, Required<StartEndPointProps>>, never, StartEndPointProps, {}>;
9
+ export declare const StartEndPoint: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<StartEndPointProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<StartEndPointProps, Required<StartEndPointProps>>, never, StartEndPointProps, {}>;
@@ -0,0 +1 @@
1
+ export * from "./StartEndPoint";
@@ -0,0 +1,3 @@
1
+ export { pointInfoBoxEmphasize, pointLayout, pointSingleInfoBox, } from "../StartEndPoint/StartEndPoint.css";
2
+ export declare const taxiCarLayout: string;
3
+ export declare const carIcon: string;
@@ -0,0 +1,8 @@
1
+ export interface TaxiCarProps {
2
+ position: [number, number];
3
+ angle?: number;
4
+ title?: string;
5
+ }
6
+ export declare const ATaxiCar: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<TaxiCarProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<TaxiCarProps, Required<TaxiCarProps>>, never, TaxiCarProps, {}>;
7
+ export declare const GTaxiCar: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<TaxiCarProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<TaxiCarProps, Required<TaxiCarProps>>, never, TaxiCarProps, {}>;
8
+ export declare const TaxiCar: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<TaxiCarProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<TaxiCarProps, Required<TaxiCarProps>>, never, TaxiCarProps, {}>;
@@ -0,0 +1 @@
1
+ export * from "./TaxiCar";
@@ -0,0 +1,6 @@
1
+ export interface WalkingLineProps {
2
+ path: [number, number][];
3
+ }
4
+ export declare const AWalkingLine: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<WalkingLineProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<WalkingLineProps, Required<WalkingLineProps>>, never, WalkingLineProps, {}>;
5
+ export declare const GWalkingLine: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<WalkingLineProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<WalkingLineProps, Required<WalkingLineProps>>, never, WalkingLineProps, {}>;
6
+ export declare const WalkingLine: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<WalkingLineProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<WalkingLineProps, Required<WalkingLineProps>>, never, WalkingLineProps, {}>;
@@ -0,0 +1 @@
1
+ export * from "./WalkingLine";
@@ -0,0 +1,4 @@
1
+ export declare const waveAnimationFirst: string;
2
+ export declare const waveAnimationSecond: string;
3
+ export declare const waveCircle: string;
4
+ export declare const secondCircle: string;
@@ -0,0 +1,6 @@
1
+ export interface WaveCircleProps {
2
+ position: [number, number];
3
+ }
4
+ export declare const AWaveCircle: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<WaveCircleProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<WaveCircleProps, Required<WaveCircleProps>>, never, WaveCircleProps, {}>;
5
+ export declare const GWaveCircle: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<WaveCircleProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<WaveCircleProps, Required<WaveCircleProps>>, never, WaveCircleProps, {}>;
6
+ export declare const WaveCircle: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<WaveCircleProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<WaveCircleProps, Required<WaveCircleProps>>, never, WaveCircleProps, {}>;
@@ -0,0 +1 @@
1
+ export * from "./WaveCircle";
@@ -0,0 +1 @@
1
+ export declare const amap: string;
@@ -0,0 +1,7 @@
1
+ export interface AmapProps extends AMap.MapOptions {
2
+ onMapMove?: (e: {
3
+ type: "mapmove";
4
+ target: AMap.Map;
5
+ }) => void;
6
+ }
7
+ export declare const Amap: import("vue-demi").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<AmapProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<AmapProps, Required<AmapProps>>, "mapMove", AmapProps, {}>;
@@ -0,0 +1 @@
1
+ export * from "./Amap";