crawler-google-places/INPUT_SCHEMA.json

52 lines
1.7 KiB
JSON
Raw Normal View History

2018-11-20 14:29:46 +00:00
{
"title": "Crawler for Google places",
2018-11-20 14:50:56 +00:00
"description": "This crawler search string on input on google maps and returns all information about found places.",
2018-11-20 14:29:46 +00:00
"type": "object",
"schemaVersion": 1,
"properties": {
"searchString": {
"title": "Search",
"type": "string",
"description": "String will be search on Google maps.",
2018-12-10 15:20:21 +00:00
"prefill": "pubs near prague 2",
2018-11-20 14:29:46 +00:00
"editor": "textfield"
},
2018-11-20 14:56:23 +00:00
"proxyConfig": {
"title": "Proxy configuration",
"type": "object",
"description": "Use Apify Proxy, you need to have some proxy group to get results on Google.",
2018-11-20 14:56:23 +00:00
"prefill": { "useApifyProxy": true },
"editor": "proxy"
},
2018-11-20 14:29:46 +00:00
"lat": {
2019-01-04 19:01:05 +00:00
"title": "Viewport point latitude",
2018-11-20 14:35:05 +00:00
"type": "string",
2018-11-20 14:36:33 +00:00
"description": "Use it with combination with longitude and zoom to set up viewport to search on.",
"editor": "textfield"
2018-11-20 14:29:46 +00:00
},
"lng": {
2019-01-04 19:01:05 +00:00
"title": "Viewport point longitude",
2018-11-20 14:35:05 +00:00
"type": "string",
2018-11-20 14:36:33 +00:00
"description": "Use it with combination with latitude and zoom to set up viewport to search on.",
"editor": "textfield"
2018-11-20 14:29:46 +00:00
},
"zoom": {
2019-01-04 19:01:05 +00:00
"title": "Viewport zoom level",
2018-11-20 14:37:52 +00:00
"type": "integer",
2019-01-04 19:01:05 +00:00
"description": "Use it with combination with point longitude and latitude to set up viewport to search on. You have whole world on map with zoom level 1.",
2018-11-20 14:31:33 +00:00
"minimum": 1,
2019-01-04 19:01:05 +00:00
"maximum": 20
},
"maxCrawledPlaces": {
"title": "Max crawled places",
"type": "integer",
"description": "Use to limit places you want to get from crawler. If you fill 0 or nothing all places will be scrape",
"minimum": 0
2018-11-20 14:29:46 +00:00
}
},
"required": [
2019-01-04 19:01:05 +00:00
"searchString",
"proxyConfig"
2018-11-20 14:29:46 +00:00
]
}