color-picker.schema.json
7 months ago
date-picker.schema.json
7 months ago
date-time-picker.schema.json
7 months ago
google-map.schema.json
7 months ago
icon-picker.schema.json
7 months ago
time-picker.schema.json
7 months ago
google-map.schema.json
31 lines
| 1 | { |
| 2 | "title": "SCF Google Map Field Fragment", |
| 3 | "description": "Type-specific properties for Google Map fields", |
| 4 | "type": "object", |
| 5 | "properties": { |
| 6 | "type": { |
| 7 | "enum": [ "google_map" ] |
| 8 | }, |
| 9 | "height": { |
| 10 | "type": "string", |
| 11 | "default": "", |
| 12 | "description": "Map height in pixels (empty uses default 400)" |
| 13 | }, |
| 14 | "center_lat": { |
| 15 | "type": "string", |
| 16 | "default": "", |
| 17 | "description": "Initial map center latitude (empty uses default)" |
| 18 | }, |
| 19 | "center_lng": { |
| 20 | "type": "string", |
| 21 | "default": "", |
| 22 | "description": "Initial map center longitude (empty uses default)" |
| 23 | }, |
| 24 | "zoom": { |
| 25 | "type": "string", |
| 26 | "default": "", |
| 27 | "description": "Initial map zoom level (empty uses default 14)" |
| 28 | } |
| 29 | } |
| 30 | } |
| 31 |