{ "title": "Crawler for Google places", "description": "This crawler search string on input on google maps and returns all information about found places.", "type": "object", "schemaVersion": 1, "properties": { "searchString": { "title": "Search", "type": "string", "description": "String will be search on Google maps.", "prefill": "Gym", "editor": "textfield" }, "proxyConfig": { "title": "Proxy configuration", "type": "object", "description": "Use Apify Proxy, you need to have some proxy group to get results on Google.", "prefill": { "useApifyProxy": true }, "editor": "proxy" }, "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 }, "lat": { "title": "Viewport Latitude", "type": "string", "description": "Use it with combination with longitude and zoom to set up viewport to search on.", "editor": "textfield" }, "lng": { "title": "Viewport Longitude", "type": "string", "description": "Use it with combination with latitude and zoom to set up viewport to search on.", "editor": "textfield" }, "zoom": { "title": "Viewport Zoom", "type": "integer", "description": "Use it with combination with longitude and latitude to set up viewport to search on.", "minimum": 1, "maximum": 15 } }, "required": [ "searchString" ] }