|
Online Maps v3
|
Parameters of QQ Search request. More...
Public Member Functions | |
| Params (string region, bool auto_extend=false, double? lng=null, double? lat=null) | |
| Search for a specific city. | |
| Params (double lng, double lat, int radius) | |
| A Nearby Search lets you search for places within a specified area. | |
| Params (double lng1, double lat1, double lng2, double lat2) | |
| Rectangle Search. | |
Public Attributes | |
| string | filter |
| Filter criteria. http://lbs.qq.com/webservice_v1/guide-search.html#filter_detail. | |
| string | orderby |
| Sort by. http://lbs.qq.com/webservice_v1/guide-search.html#orderby_detail. | |
| int? | page_size |
| The maximum number of entries per page is 20. | |
| int? | page_index |
| Page x, default page 1. | |
Parameters of QQ Search request.
| OnlineMapsQQSearch.Params.Params | ( | string | region, |
| bool | auto_extend = false, | ||
| double? | lng = null, | ||
| double? | lat = null ) |
Search for a specific city.
| region | Retrieves the region name, city name, such as Beijing. |
| auto_extend | TRUE: the current city search results, then automatically expand the scope; FALSE: Search only in the current city. |
| lng | Longitude of the center location. |
| lat | Latitude of the center location. |
| OnlineMapsQQSearch.Params.Params | ( | double | lng, |
| double | lat, | ||
| int | radius ) |
A Nearby Search lets you search for places within a specified area.
| lng | Longitude of the center location. |
| lat | Latitude of the center location. |
| radius | Radius (meters). |
| OnlineMapsQQSearch.Params.Params | ( | double | lng1, |
| double | lat1, | ||
| double | lng2, | ||
| double | lat2 ) |
Rectangle Search.
| lng1 | Left longitude |
| lat1 | Bottom latitude |
| lng2 | Right longitude |
| lat2 | Top latitude |