removedInput schema / $defs
Removed value: -{
- "Location": {
- "properties": {
- "lat": {
- "title": "Lat",
- "type": "number"
- },
- "lng": {
- "title": "Lng",
- "type": "number"
- }
- },
- "required": [
- "lat",
- "lng"
- ],
- "title": "Location",
- "type": "object"
- },
- "MapConfig": {
- "properties": {
- "patchworked": {
- "anyOf": [
- {
- "type": "boolean"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Auto-color closed areas and building shapes on the drawing. Default true.",
- "title": "Patchworked"
- },
- "withBuilding": {
- "anyOf": [
- {
- "type": "boolean"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Draw building shapes. Default true when building data is available.",
- "title": "Withbuilding"
- },
- "withSeaRibbon": {
- "anyOf": [
- {
- "type": "boolean"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Draw a band representing the sea along the coastline. Default true when coastline data is available.",
- "title": "Withsearibbon"
- }
- },
- "title": "MapConfig",
- "type": "object"
- },
- "Marker": {
- "properties": {
- "label": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Place name for geocoding and/or display.",
- "title": "Label"
- },
- "location": {
- "anyOf": [
- {
- "$ref": "#/$defs/Location"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Explicit coordinates. If provided, geocoding of 'label' is skipped."
- }
- },
- "title": "Marker",
- "type": "object"
- },
- "RouteEndpoint": {
- "properties": {
- "label": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Place name for geocoding and/or display.",
- "title": "Label"
- },
- "location": {
- "anyOf": [
- {
- "$ref": "#/$defs/Location"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Explicit coordinates."
- }
- },
- "title": "RouteEndpoint",
- "type": "object"
- },
- "RouteInput": {
- "description": "generate_mapのrouteパラメータ。compute_routeの戻り値をそのまま渡せる形にする。",
- "properties": {
- "color": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional line color as a CSS hex color (e.g. '#FF4500').",
- "title": "Color"
- },
- "coords": {
- "anyOf": [
- {
- "items": {
- "items": {
- "type": "number"
- },
- "type": "array"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Ordered list of [lat, lng] pairs along the route.",
- "title": "Coords"
- },
- "from": {
- "anyOf": [
- {
- "$ref": "#/$defs/RouteEndpoint"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Route start point."
- },
- "mode": {
- "anyOf": [
- {
- "enum": [
- "walking",
- "driving"
- ],
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Mode"
- },
- "to": {
- "anyOf": [
- {
- "$ref": "#/$defs/RouteEndpoint"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Route end point."
- }
- },
- "title": "RouteInput",
- "type": "object"
- }
-}
removedInput schema / properties / canvas_height
Removed value: -{
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Canvas Height"
-}
removedInput schema / properties / canvas_width
Removed value: -{
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Canvas Width"
-}
removedInput schema / properties / color_set
Removed value: -{
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Color Set"
-}
removedInput schema / properties / config
Removed value: -{
- "anyOf": [
- {
- "$ref": "#/$defs/MapConfig"
- },
- {
- "type": "null"
- }
- ],
- "default": null
-}
removedInput schema / properties / format
Removed value: -{
- "default": "png",
- "title": "Format",
- "type": "string"
-}
removedInput schema / properties / lat
Removed value: -{
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Lat"
-}
removedInput schema / properties / layers
Removed value: -{
- "anyOf": [
- {
- "enum": [
- "default",
- "road_and_railway",
- "only_driving_road",
- "fully_detailed"
- ],
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Layers"
-}
removedInput schema / properties / lng
Removed value: -{
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Lng"
-}
removedInput schema / properties / markers
Removed value: -{
- "anyOf": [
- {
- "items": {
- "$ref": "#/$defs/Marker"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Markers"
-}
removedInput schema / properties / name
Removed value: -{
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Name"
-}
removedInput schema / properties / place / anyOf
Removed value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]
removedInput schema / properties / place / default
Removed value: -null
addedInput schema / properties / place / description
Added value: +"Place name to center the map on (geocoded server-side)."
addedInput schema / properties / place / type
Added value: +"string"
removedInput schema / properties / radius
Removed value: -{
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Radius"
-}
removedInput schema / properties / route
Removed value: -{
- "anyOf": [
- {
- "$ref": "#/$defs/RouteInput"
- },
- {
- "type": "null"
- }
- ],
- "default": null
-}
removedInput schema / properties / size_ew
Removed value: -{
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Size Ew"
-}
removedInput schema / properties / size_ns
Removed value: -{
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Size Ns"
-}
addedInput schema / required
Added value: +[
+ "place"
+]