addedInput schema / $defs
Added value: +{
+ "Location": {
+ "description": "Explicit coordinates.",
+ "properties": {
+ "lat": {
+ "description": "Latitude.",
+ "type": "number"
+ },
+ "lng": {
+ "description": "Longitude.",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "RouteEndpoint": {
+ "description": "Provide 'location' for explicit coordinates (no geocoding), or only 'label' to geocode server-side. Both may be provided — 'location' takes precedence, 'label' is used for display.",
+ "properties": {
+ "label": {
+ "description": "Place name for geocoding and/or display.",
+ "type": "string"
+ },
+ "location": {
+ "$ref": "#/$defs/Location"
+ }
+ },
+ "type": "object"
+ }
+}
changedInput schema / properties / color_set / description
Previous value: -"Color theme. One of: darkBlue, darkGreen, popArt, lightBlue, lightGreen, beige, magenta, white, gray, black, brawn."New value: +"Color theme — see server instructions for the list."
removedInput schema / properties / config
Removed value: -{
- "description": "Overrides for automatic layer-visibility defaults. Omit any field to keep the default.",
- "properties": {
- "patchworked": {
- "description": "Auto-color closed areas and building shapes on the drawing. Default true.",
- "type": "boolean"
- },
- "withBuilding": {
- "description": "Draw building shapes. Default true when building data is available.",
- "type": "boolean"
- },
- "withSeaRibbon": {
- "description": "Draw a band representing the sea along the coastline. Default true when coastline data is available.",
- "type": "boolean"
- }
- },
- "type": "object"
-}
changedInput schema / properties / layers / description
Previous value: -"Preset combination of map layers. 'default': roads + POI icons. 'only_driving_road': car-accessible roads only, nothing else. 'road_and_railway': roads + railway lines, no POI. 'fully_detailed': roads + railway + waterline + greenarea + POI (waterline/greenarea only apply within Japan; ignored elsewhere)."New value: +"Layer preset — see server instructions for details. Omit for 'default'."
addedInput schema / properties / markers / items / properties / location / $ref
Added value: +"#/$defs/Location"
removedInput schema / properties / markers / items / properties / location / properties
Removed value: -{
- "lat": {
- "description": "Latitude.",
- "type": "number"
- },
- "lng": {
- "description": "Longitude.",
- "type": "number"
- }
-}
removedInput schema / properties / markers / items / properties / location / type
Removed value: -"object"
changedInput schema / properties / radius / description
Previous value: -"Circular coverage radius in meters (max depends on layers). Mutually exclusive with size_ew/size_ns. Omit this if the user hasn't specified a size — a sensible default is applied automatically."New value: +"Circular radius in meters. Exclusive with size_ew/size_ns; omit for automatic default."
changedInput schema / properties / route / description
Previous value: -"Route to overlay, as returned by compute_route. Pass that object through as-is."New value: +"Route to overlay — pass compute_route()'s result through as-is."
addedInput schema / properties / route / properties / from / $ref
Added value: +"#/$defs/RouteEndpoint"
removedInput schema / properties / route / properties / from / properties
Removed value: -{
- "label": {
- "description": "Place name for geocoding and/or display.",
- "type": "string"
- },
- "location": {
- "description": "Explicit coordinates.",
- "properties": {
- "lat": {
- "description": "Latitude.",
- "type": "number"
- },
- "lng": {
- "description": "Longitude.",
- "type": "number"
- }
- },
- "type": "object"
- }
-}
removedInput schema / properties / route / properties / from / type
Removed value: -"object"
addedInput schema / properties / route / properties / to / $ref
Added value: +"#/$defs/RouteEndpoint"
removedInput schema / properties / route / properties / to / properties
Removed value: -{
- "label": {
- "description": "Place name for geocoding and/or display.",
- "type": "string"
- },
- "location": {
- "description": "Explicit coordinates.",
- "properties": {
- "lat": {
- "description": "Latitude.",
- "type": "number"
- },
- "lng": {
- "description": "Longitude.",
- "type": "number"
- }
- },
- "type": "object"
- }
-}
removedInput schema / properties / route / properties / to / type
Removed value: -"object"
changedInput schema / properties / size_ew / description
Previous value: -"East-west width of a rectangular coverage area in meters. Must be combined with size_ns."New value: +"Rectangular area width (east-west), meters. Pairs with size_ns; exclusive with radius."
changedInput schema / properties / size_ns / description
Previous value: -"North-south height of a rectangular coverage area in meters. Must be combined with size_ew."New value: +"Rectangular area height (north-south), meters. Pairs with size_ew."