@nocobase/plugin-map 2.0.0-alpha.5 → 2.0.0-alpha.51

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 (51) hide show
  1. package/dist/client/components/AMap/Map.d.ts +0 -1
  2. package/dist/client/components/GoogleMaps/Map.d.ts +2 -2
  3. package/dist/client/index.js +1 -1
  4. package/dist/client/models/MapActionGroupModel.d.ts +11 -0
  5. package/dist/client/models/MapBlockComponent.d.ts +10 -0
  6. package/dist/client/models/MapBlockModel.d.ts +25 -0
  7. package/dist/client/models/components/AMap/Block.d.ts +10 -0
  8. package/dist/client/models/components/AMap/Map.d.ts +48 -0
  9. package/dist/client/models/components/AMap/Search.d.ts +15 -0
  10. package/dist/client/models/components/AMap/index.d.ts +10 -0
  11. package/dist/client/models/components/Configuration.d.ts +10 -0
  12. package/dist/client/models/components/GoogleMaps/Block.d.ts +10 -0
  13. package/dist/client/models/components/GoogleMaps/Map.d.ts +40 -0
  14. package/dist/client/models/components/GoogleMaps/Search.d.ts +16 -0
  15. package/dist/client/models/components/GoogleMaps/index.d.ts +10 -0
  16. package/dist/client/models/components/GoogleMaps/utils.d.ts +13 -0
  17. package/dist/client/models/components/Map.d.ts +13 -0
  18. package/dist/client/models/components/MapComponent.d.ts +10 -0
  19. package/dist/client/models/components/index.d.ts +13 -0
  20. package/dist/externalVersion.js +7 -6
  21. package/dist/locale/de-DE.json +45 -39
  22. package/dist/locale/en-US.json +45 -39
  23. package/dist/locale/es-ES.json +57 -0
  24. package/dist/locale/fr-FR.json +57 -0
  25. package/dist/locale/hu-HU.json +57 -0
  26. package/dist/locale/id-ID.json +57 -0
  27. package/dist/locale/it-IT.json +45 -39
  28. package/dist/locale/ja-JP.json +44 -38
  29. package/dist/locale/ko-KR.json +45 -39
  30. package/dist/locale/nl-NL.json +56 -52
  31. package/dist/locale/pt-BR.json +47 -35
  32. package/dist/locale/ru-RU.json +57 -0
  33. package/dist/locale/tr-TR.json +57 -0
  34. package/dist/locale/uk-UA.json +57 -0
  35. package/dist/locale/vi-VN.json +57 -0
  36. package/dist/locale/zh-CN.json +45 -42
  37. package/dist/locale/zh-TW.json +57 -0
  38. package/package.json +5 -2
  39. /package/dist/client/{fields/fieldModels → models}/MapComponent.d.ts +0 -0
  40. /package/dist/client/{fields → models}/fieldModels/CircleFieldModel.d.ts +0 -0
  41. /package/dist/client/{fields → models}/fieldModels/DisplayCircleFieldModel.d.ts +0 -0
  42. /package/dist/client/{fields → models}/fieldModels/DisplayLineStringFieldModel.d.ts +0 -0
  43. /package/dist/client/{fields → models}/fieldModels/DisplayMapFieldModel.d.ts +0 -0
  44. /package/dist/client/{fields → models}/fieldModels/DisplayPointFieldModel.d.ts +0 -0
  45. /package/dist/client/{fields → models}/fieldModels/DisplayPolygonFieldModel.d.ts +0 -0
  46. /package/dist/client/{fields → models}/fieldModels/LineStringFieldModel.d.ts +0 -0
  47. /package/dist/client/{fields → models}/fieldModels/MapFieldModel.d.ts +0 -0
  48. /package/dist/client/{fields → models}/fieldModels/PointFieldModel.d.ts +0 -0
  49. /package/dist/client/{fields → models}/fieldModels/PolygonFieldModel.d.ts +0 -0
  50. /package/dist/client/{fields → models}/fieldModels/index.d.ts +0 -0
  51. /package/dist/client/{fields → models}/fieldModels/setDefaultZoomLevel.d.ts +0 -0
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import { ActionGroupModel } from '@nocobase/client';
10
+ export declare class MapActionGroupModel extends ActionGroupModel {
11
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import React from 'react';
10
+ export declare const MapBlockComponent: React.FC<any>;
@@ -0,0 +1,25 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import { MultiRecordResource } from '@nocobase/flow-engine';
10
+ import { CollectionBlockModel } from '@nocobase/client';
11
+ import React from 'react';
12
+ export declare class MapBlockModel extends CollectionBlockModel {
13
+ static scene: import("@nocobase/client").BlockSceneType;
14
+ selectedRecordKeys: any[];
15
+ get resource(): MultiRecordResource<any>;
16
+ onInit(options: any): void;
17
+ createResource(ctx: any, params: any): MultiRecordResource<unknown>;
18
+ renderConfiguireActions(): React.JSX.Element;
19
+ getSelectedRecordKeys(): any[];
20
+ setSelectedRecordKeys(keys: any): void;
21
+ getInputArgs(): {};
22
+ protected onMount(): void;
23
+ set onOpenView(fn: any);
24
+ renderComponent(): React.JSX.Element;
25
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import React from 'react';
10
+ export declare const AMapBlock: (props: any) => React.JSX.Element;
@@ -0,0 +1,48 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import '@amap/amap-jsapi-types';
10
+ import React from 'react';
11
+ import { MapEditorType } from '../../../types';
12
+ export interface AMapComponentProps {
13
+ value?: any;
14
+ onChange?: (value: number[]) => void;
15
+ disabled?: boolean;
16
+ mapType: string;
17
+ /**
18
+ * only ReadPretty
19
+ */
20
+ readonly: string;
21
+ zoom: number;
22
+ type: MapEditorType;
23
+ style?: React.CSSProperties;
24
+ overlayCommonOptions?: AMap.PolylineOptions & AMap.PolygonOptions;
25
+ block?: boolean;
26
+ height?: number;
27
+ }
28
+ export interface AMapForwardedRefProps {
29
+ setOverlay: (t: MapEditorType, v: any, o?: AMap.PolylineOptions & AMap.PolygonOptions & AMap.MarkerOptions) => any;
30
+ getOverlay: (t: MapEditorType, v: any, o?: AMap.PolylineOptions & AMap.PolygonOptions & AMap.MarkerOptions) => any;
31
+ createMouseTool: (type: MapEditorType) => void;
32
+ createEditor: (type: MapEditorType) => void;
33
+ executeMouseTool: (type: MapEditorType) => void;
34
+ aMap: any;
35
+ map: AMap.Map;
36
+ editor: () => {
37
+ getTarget: () => AMap.Polygon;
38
+ setTarget: (o: any) => void;
39
+ close: () => void;
40
+ on: (event: string, callback: (e: any) => void) => void;
41
+ };
42
+ mouseTool: () => {
43
+ close: (clear?: boolean) => void;
44
+ };
45
+ overlay: AMap.Polygon;
46
+ errMessage?: string;
47
+ }
48
+ export declare const AMapCom: React.ForwardRefExoticComponent<AMapComponentProps & React.RefAttributes<AMapForwardedRefProps>>;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import React from 'react';
10
+ interface SearchProps {
11
+ aMap: any;
12
+ toCenter: (p: any) => void;
13
+ }
14
+ export declare const Search: (props: SearchProps) => React.JSX.Element;
15
+ export {};
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ export * from './Block';
10
+ export * from './Map';
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import React from 'react';
10
+ export declare const Configuration: () => React.JSX.Element;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import React from 'react';
10
+ export declare const GoogleMapsBlock: (props: any) => React.JSX.Element;
@@ -0,0 +1,40 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ /// <reference types="google.maps" />
10
+ import React from 'react';
11
+ import { MapEditorType } from '../../../types';
12
+ export type OverlayOptions = google.maps.PolygonOptions & google.maps.MarkerOptions & google.maps.PolylineOptions;
13
+ export declare const getDrawingMode: (type: MapEditorType) => "polygon" | "circle" | "marker" | "polyline";
14
+ export interface GoogleMapsCompProps {
15
+ value?: any;
16
+ onChange?: (value: number[]) => void;
17
+ disabled?: boolean;
18
+ mapType: string;
19
+ /**
20
+ * only ReadPretty
21
+ */
22
+ readonly: string;
23
+ zoom: number;
24
+ type: MapEditorType;
25
+ style?: React.CSSProperties;
26
+ overlayCommonOptions?: OverlayOptions;
27
+ block?: boolean;
28
+ height?: number;
29
+ }
30
+ export interface GoogleMapForwardedRefProps {
31
+ setOverlay: (t: MapEditorType, v: any, o?: OverlayOptions) => google.maps.MVCObject;
32
+ getOverlay: (t: MapEditorType, v: any, o?: OverlayOptions) => google.maps.MVCObject;
33
+ setFitView: (overlays: google.maps.MVCObject[]) => void;
34
+ createDraw: (onlyCreate?: boolean, additionalOptions?: OverlayOptions) => any;
35
+ map: google.maps.Map;
36
+ overlay: google.maps.MVCObject;
37
+ drawingManager: google.maps.drawing.DrawingManager;
38
+ errMessage?: string;
39
+ }
40
+ export declare const GoogleMapsCom: React.ForwardRefExoticComponent<GoogleMapsCompProps & React.RefAttributes<GoogleMapForwardedRefProps>>;
@@ -0,0 +1,16 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ /// <reference types="google.maps" />
10
+ import React from 'react';
11
+ interface SearchProps {
12
+ toCenter: (p: any) => void;
13
+ mapRef: React.RefObject<google.maps.Map>;
14
+ }
15
+ export declare const Search: (props: SearchProps) => React.JSX.Element;
16
+ export default Search;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ export * from './Block';
10
+ export * from './Map';
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ export declare const getIcon: (url: any) => google.maps.Icon;
10
+ export declare const getCurrentPosition: () => Promise<{
11
+ lat: number;
12
+ lng: number;
13
+ }>;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import React from 'react';
10
+ import { AMapComponentProps } from './AMap';
11
+ type MapProps = AMapComponentProps;
12
+ declare const Map: (props: MapProps) => React.JSX.Element;
13
+ export { Map };
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import React from 'react';
10
+ export declare const MapComponent: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<any>>;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ export * from './AMap';
10
+ export * from './Configuration';
11
+ export * from './GoogleMaps';
12
+ export * from './Map';
13
+ export * from './MapComponent';
@@ -8,10 +8,10 @@
8
8
  */
9
9
 
10
10
  module.exports = {
11
- "@nocobase/client": "2.0.0-alpha.5",
11
+ "@nocobase/client": "2.0.0-alpha.51",
12
12
  "react": "18.2.0",
13
- "@nocobase/server": "2.0.0-alpha.5",
14
- "@nocobase/test": "2.0.0-alpha.5",
13
+ "@nocobase/server": "2.0.0-alpha.51",
14
+ "@nocobase/test": "2.0.0-alpha.51",
15
15
  "@formily/react": "2.3.7",
16
16
  "lodash": "4.17.21",
17
17
  "react-i18next": "11.18.6",
@@ -21,8 +21,9 @@ module.exports = {
21
21
  "antd": "5.24.2",
22
22
  "@formily/shared": "2.3.7",
23
23
  "@formily/core": "2.3.7",
24
- "@nocobase/flow-engine": "2.0.0-alpha.5",
25
- "@nocobase/actions": "2.0.0-alpha.5",
26
- "@nocobase/database": "2.0.0-alpha.5",
24
+ "@nocobase/flow-engine": "2.0.0-alpha.51",
25
+ "@nocobase/plugin-action-bulk-update": "2.0.0-alpha.51",
26
+ "@nocobase/actions": "2.0.0-alpha.51",
27
+ "@nocobase/database": "2.0.0-alpha.51",
27
28
  "ahooks": "3.7.8"
28
29
  };
@@ -1,51 +1,57 @@
1
1
  {
2
- "Map": "Karte",
3
- "Map-based geometry": "Kartenbasierte Geometrie",
4
- "Map type": "Kartentyp",
5
- "Point": "Punkt",
6
- "Line": "Linie",
7
- "Circle": "Kreis",
8
- "Polygon": "Polygon",
9
- "Access key": "Zugriffsschlüssel",
10
- "securityJsCode or serviceHost": "securityJsCode oder serviceHost",
11
2
  "AMap": "AMap",
12
- "Google Maps": "Google Maps",
13
- "Clear": "Löschen",
14
- "Click to select the starting point and double-click to end the drawing": "Klicken Sie, um den Startpunkt auszuwählen, und doppelklicken Sie, um die Zeichnung zu beenden",
15
- "Clear the canvas": "Leinwand löschen",
3
+ "Access key": "Zugriffsschlüssel",
4
+ "Access key is required": "Access key is required",
5
+ "Api key is required": "Api key is required",
16
6
  "Are you sure to clear the canvas?": "Sind Sie sicher, dass Sie die Leinwand löschen möchten?",
17
- "Confirm": "Bestätigen",
18
7
  "Cancel": "Abbrechen",
19
- "Enter keywords to search": "Geben Sie Suchbegriffe ein",
20
- "The AccessKey is incorrect, please check it": "Der Zugriffsschlüssel ist falsch, bitte überprüfen Sie ihn",
21
- "Please configure the AMap securityCode or serviceHost correctly": "Bitte konfigurieren Sie den AMap securityCode oder serviceHost korrekt",
22
- "Map manager": "Karten-Manager",
8
+ "Circle": "Kreis",
9
+ "Clear": "Löschen",
10
+ "Clear the canvas": "Leinwand löschen",
11
+ "Click to select the starting point and double-click to end the drawing": "Klicken Sie, um den Startpunkt auszuwählen, und doppelklicken Sie, um die Zeichnung zu beenden",
12
+ "Concatenation order field": "Verkettungsreihenfolgefeld",
23
13
  "Configuration": "Konfiguration",
24
- "Saved successfully": "Erfolgreich gespeichert",
25
- "Saved failed": "Speichern fehlgeschlagen",
14
+ "Confirm": "Bestätigen",
15
+ "Create map block": "Kartenblock erstellen",
16
+ "Delete field": "Feld löschen",
17
+ "Easy-reading": "Leicht lesbar",
26
18
  "Edit": "Bearbeiten",
27
- "Save": "Speichern",
28
- "Please configure the AccessKey and SecurityJsCode first": "Bitte konfigurieren Sie zuerst den AccessKey und SecurityJsCode",
29
- "Go to the configuration page": "Zur Konfigurationsseite gehen",
30
- "Zoom": "Zoom",
31
- "Set default zoom level": "Standard-Zoomstufe festlegen",
32
- "The default zoom level of the map": "Die Standard-Zoomstufe der Karte",
19
+ "Edit description": "Beschreibung bearbeiten",
33
20
  "Edit field title": "Feldtitel bearbeiten",
34
- "Field title": "Feldtitel",
35
21
  "Edit tooltip": "Tooltip bearbeiten",
36
- "Delete field": "Feld löschen",
37
- "Required": "Erforderlich",
38
- "Pattern": "Muster",
39
- "Operator": "Operator",
40
22
  "Editable": "Bearbeitbar",
41
- "Readonly": "Schreibgeschützt",
42
- "Easy-reading": "Leicht lesbar",
43
- "Edit description": "Beschreibung bearbeiten",
23
+ "End point": "Endpunkt",
24
+ "Enter keywords to search": "Geben Sie Suchbegriffe ein",
25
+ "Field title": "Feldtitel",
26
+ "Go to the configuration page": "Zur Konfigurationsseite gehen",
27
+ "Google Maps": "Google Maps",
28
+ "Line": "Linie",
29
+ "Load google maps failed, Please check the Api key and refresh the page": "Google Maps konnte nicht geladen werden. Bitte überprüfen Sie den API-Schlüssel und aktualisieren Sie die Seite",
30
+ "Map": "Karte",
31
+ "Map Field & Marker field": "Map Field & Marker field",
32
+ "Map block settings": "Map block settings",
44
33
  "Map field": "Kartenfeld",
34
+ "Map field settings": "Map field settings",
35
+ "Map manager": "Karten-Manager",
36
+ "Map type": "Kartentyp",
37
+ "Map-based geometry": "Kartenbasierte Geometrie",
45
38
  "Marker field": "Markierungsfeld",
46
- "Load google maps failed, Please check the Api key and refresh the page": "Google Maps konnte nicht geladen werden. Bitte überprüfen Sie den API-Schlüssel und aktualisieren Sie die Seite",
47
- "Create map block": "Kartenblock erstellen",
39
+ "Operator": "Operator",
40
+ "Pattern": "Muster",
41
+ "Please configure the AMap securityCode or serviceHost correctly": "Bitte konfigurieren Sie den AMap securityCode oder serviceHost korrekt",
42
+ "Please configure the AccessKey and SecurityJsCode first": "Bitte konfigurieren Sie zuerst den AccessKey und SecurityJsCode",
43
+ "Point": "Punkt",
44
+ "Polygon": "Polygon",
45
+ "Readonly": "Schreibgeschützt",
46
+ "Required": "Erforderlich",
47
+ "Save": "Speichern",
48
+ "Saved failed": "Speichern fehlgeschlagen",
49
+ "Saved successfully": "Erfolgreich gespeichert",
50
+ "Set default zoom level": "Standard-Zoomstufe festlegen",
48
51
  "Start point": "Startpunkt",
49
- "End point": "Endpunkt",
50
- "Concatenation order field": "Verkettungsreihenfolgefeld"
51
- }
52
+ "The AccessKey is incorrect, please check it": "Der Zugriffsschlüssel ist falsch, bitte überprüfen Sie ihn",
53
+ "The default zoom level of the map": "Die Standard-Zoomstufe der Karte",
54
+ "Zoom": "Zoom",
55
+ "securityJsCode or serviceHost": "securityJsCode oder serviceHost",
56
+ "securityJsCode or serviceHost is required": "securityJsCode or serviceHost is required"
57
+ }
@@ -1,51 +1,57 @@
1
1
  {
2
- "Map": "Map",
3
- "Map-based geometry": "Map-based geometry",
4
- "Map type": "Map type",
5
- "Point": "Point",
6
- "Line": "Line",
7
- "Circle": "Circle",
8
- "Polygon": "Polygon",
9
- "Access key": "Access key",
10
- "securityJsCode or serviceHost": "securityJsCode or serviceHost",
11
2
  "AMap": "AMap",
12
- "Google Maps": "Google Maps",
13
- "Clear": "Clear",
14
- "Click to select the starting point and double-click to end the drawing": "Click to select the starting point and double-click to end the drawing",
15
- "Clear the canvas": "Clear the canvas",
3
+ "Access key": "Access key",
4
+ "Access key is required": "Access key is required",
5
+ "Api key is required": "Api key is required",
16
6
  "Are you sure to clear the canvas?": "Are you sure to clear the canvas?",
17
- "Confirm": "Confirm",
18
7
  "Cancel": "Cancel",
19
- "Enter keywords to search": "Enter keywords to search",
20
- "The AccessKey is incorrect, please check it": "The AccessKey is incorrect, please check it",
21
- "Please configure the AMap securityCode or serviceHost correctly": "Please configure the AMap securityCode or serviceHost correctly",
22
- "Map manager": "Map manager",
8
+ "Circle": "Circle",
9
+ "Clear": "Clear",
10
+ "Clear the canvas": "Clear the canvas",
11
+ "Click to select the starting point and double-click to end the drawing": "Click to select the starting point and double-click to end the drawing",
12
+ "Concatenation order field": "Concatenation order field",
23
13
  "Configuration": "Configuration",
24
- "Saved successfully": "Saved successfully",
25
- "Saved failed": "Saved failed",
14
+ "Confirm": "Confirm",
15
+ "Create map block": "Create map block",
16
+ "Delete field": "Delete field",
17
+ "Easy-reading": "Easy-reading",
26
18
  "Edit": "Edit",
27
- "Save": "Save",
28
- "Please configure the AccessKey and SecurityJsCode first": "Please configure the AccessKey and SecurityJsCode first",
29
- "Go to the configuration page": "Go to the configuration page",
30
- "Zoom": "Zoom",
31
- "Set default zoom level": "Set default zoom level",
32
- "The default zoom level of the map": "The default zoom level of the map",
19
+ "Edit description": "Edit description",
33
20
  "Edit field title": "Edit field title",
34
- "Field title": "Field title",
35
21
  "Edit tooltip": "Edit tooltip",
36
- "Delete field": "Delete field",
37
- "Required": "Required",
38
- "Pattern": "Pattern",
39
- "Operator": "Operator",
40
22
  "Editable": "Editable",
41
- "Readonly": "Readonly",
42
- "Easy-reading": "Easy-reading",
43
- "Edit description": "Edit description",
23
+ "End point": "End point",
24
+ "Enter keywords to search": "Enter keywords to search",
25
+ "Field title": "Field title",
26
+ "Go to the configuration page": "Go to the configuration page",
27
+ "Google Maps": "Google Maps",
28
+ "Line": "Line",
29
+ "Load google maps failed, Please check the Api key and refresh the page": "Load google maps failed, Please check the Api key and refresh the page",
30
+ "Map": "Map",
31
+ "Map Field & Marker field": "Map Field & Marker field",
32
+ "Map block settings": "Map block settings",
44
33
  "Map field": "Map field",
34
+ "Map field settings": "Map field settings",
35
+ "Map manager": "Map manager",
36
+ "Map type": "Map type",
37
+ "Map-based geometry": "Map-based geometry",
45
38
  "Marker field": "Marker field",
46
- "Load google maps failed, Please check the Api key and refresh the page": "Load google maps failed, Please check the Api key and refresh the page",
47
- "Create map block": "Create map block",
39
+ "Operator": "Operator",
40
+ "Pattern": "Pattern",
41
+ "Please configure the AMap securityCode or serviceHost correctly": "Please configure the AMap securityCode or serviceHost correctly",
42
+ "Please configure the AccessKey and SecurityJsCode first": "Please configure the AccessKey and SecurityJsCode first",
43
+ "Point": "Point",
44
+ "Polygon": "Polygon",
45
+ "Readonly": "Readonly",
46
+ "Required": "Required",
47
+ "Save": "Save",
48
+ "Saved failed": "Saved failed",
49
+ "Saved successfully": "Saved successfully",
50
+ "Set default zoom level": "Set default zoom level",
48
51
  "Start point": "Start point",
49
- "End point": "End point",
50
- "Concatenation order field": "Concatenation order field"
51
- }
52
+ "The AccessKey is incorrect, please check it": "The AccessKey is incorrect, please check it",
53
+ "The default zoom level of the map": "The default zoom level of the map",
54
+ "Zoom": "Zoom",
55
+ "securityJsCode or serviceHost": "securityJsCode or serviceHost",
56
+ "securityJsCode or serviceHost is required": "securityJsCode or serviceHost is required"
57
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "AMap": "AMap",
3
+ "Access key": "Access key",
4
+ "Access key is required": "Access key is required",
5
+ "Api key is required": "Api key is required",
6
+ "Are you sure to clear the canvas?": "Are you sure to clear the canvas?",
7
+ "Cancel": "Cancel",
8
+ "Circle": "Circle",
9
+ "Clear": "Clear",
10
+ "Clear the canvas": "Clear the canvas",
11
+ "Click to select the starting point and double-click to end the drawing": "Click to select the starting point and double-click to end the drawing",
12
+ "Concatenation order field": "Concatenation order field",
13
+ "Configuration": "Configuration",
14
+ "Confirm": "Confirm",
15
+ "Create map block": "Create map block",
16
+ "Delete field": "Delete field",
17
+ "Easy-reading": "Easy-reading",
18
+ "Edit": "Edit",
19
+ "Edit description": "Edit description",
20
+ "Edit field title": "Edit field title",
21
+ "Edit tooltip": "Edit tooltip",
22
+ "Editable": "Editable",
23
+ "End point": "End point",
24
+ "Enter keywords to search": "Enter keywords to search",
25
+ "Field title": "Field title",
26
+ "Go to the configuration page": "Go to the configuration page",
27
+ "Google Maps": "Google Maps",
28
+ "Line": "Line",
29
+ "Load google maps failed, Please check the Api key and refresh the page": "Load google maps failed, Please check the Api key and refresh the page",
30
+ "Map": "Map",
31
+ "Map Field & Marker field": "Map Field & Marker field",
32
+ "Map block settings": "Map block settings",
33
+ "Map field": "Map field",
34
+ "Map field settings": "Map field settings",
35
+ "Map manager": "Map manager",
36
+ "Map type": "Map type",
37
+ "Map-based geometry": "Map-based geometry",
38
+ "Marker field": "Marker field",
39
+ "Operator": "Operator",
40
+ "Pattern": "Pattern",
41
+ "Please configure the AMap securityCode or serviceHost correctly": "Please configure the AMap securityCode or serviceHost correctly",
42
+ "Please configure the AccessKey and SecurityJsCode first": "Please configure the AccessKey and SecurityJsCode first",
43
+ "Point": "Point",
44
+ "Polygon": "Polygon",
45
+ "Readonly": "Readonly",
46
+ "Required": "Required",
47
+ "Save": "Save",
48
+ "Saved failed": "Saved failed",
49
+ "Saved successfully": "Saved successfully",
50
+ "Set default zoom level": "Set default zoom level",
51
+ "Start point": "Start point",
52
+ "The AccessKey is incorrect, please check it": "The AccessKey is incorrect, please check it",
53
+ "The default zoom level of the map": "The default zoom level of the map",
54
+ "Zoom": "Zoom",
55
+ "securityJsCode or serviceHost": "securityJsCode or serviceHost",
56
+ "securityJsCode or serviceHost is required": "securityJsCode or serviceHost is required"
57
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "AMap": "AMap",
3
+ "Access key": "Access key",
4
+ "Access key is required": "Access key is required",
5
+ "Api key is required": "Api key is required",
6
+ "Are you sure to clear the canvas?": "Are you sure to clear the canvas?",
7
+ "Cancel": "Cancel",
8
+ "Circle": "Circle",
9
+ "Clear": "Clear",
10
+ "Clear the canvas": "Clear the canvas",
11
+ "Click to select the starting point and double-click to end the drawing": "Click to select the starting point and double-click to end the drawing",
12
+ "Concatenation order field": "Concatenation order field",
13
+ "Configuration": "Configuration",
14
+ "Confirm": "Confirm",
15
+ "Create map block": "Create map block",
16
+ "Delete field": "Delete field",
17
+ "Easy-reading": "Easy-reading",
18
+ "Edit": "Edit",
19
+ "Edit description": "Edit description",
20
+ "Edit field title": "Edit field title",
21
+ "Edit tooltip": "Edit tooltip",
22
+ "Editable": "Editable",
23
+ "End point": "End point",
24
+ "Enter keywords to search": "Enter keywords to search",
25
+ "Field title": "Field title",
26
+ "Go to the configuration page": "Go to the configuration page",
27
+ "Google Maps": "Google Maps",
28
+ "Line": "Line",
29
+ "Load google maps failed, Please check the Api key and refresh the page": "Load google maps failed, Please check the Api key and refresh the page",
30
+ "Map": "Map",
31
+ "Map Field & Marker field": "Map Field & Marker field",
32
+ "Map block settings": "Map block settings",
33
+ "Map field": "Map field",
34
+ "Map field settings": "Map field settings",
35
+ "Map manager": "Map manager",
36
+ "Map type": "Map type",
37
+ "Map-based geometry": "Map-based geometry",
38
+ "Marker field": "Marker field",
39
+ "Operator": "Operator",
40
+ "Pattern": "Pattern",
41
+ "Please configure the AMap securityCode or serviceHost correctly": "Please configure the AMap securityCode or serviceHost correctly",
42
+ "Please configure the AccessKey and SecurityJsCode first": "Please configure the AccessKey and SecurityJsCode first",
43
+ "Point": "Point",
44
+ "Polygon": "Polygon",
45
+ "Readonly": "Readonly",
46
+ "Required": "Required",
47
+ "Save": "Save",
48
+ "Saved failed": "Saved failed",
49
+ "Saved successfully": "Saved successfully",
50
+ "Set default zoom level": "Set default zoom level",
51
+ "Start point": "Start point",
52
+ "The AccessKey is incorrect, please check it": "The AccessKey is incorrect, please check it",
53
+ "The default zoom level of the map": "The default zoom level of the map",
54
+ "Zoom": "Zoom",
55
+ "securityJsCode or serviceHost": "securityJsCode or serviceHost",
56
+ "securityJsCode or serviceHost is required": "securityJsCode or serviceHost is required"
57
+ }