getCoordinate: Get coordiante from address Take in address and return the...

Description Usage Arguments Value Examples

Description

Get coordiante from address Take in address and return the coordinate

Usage

1
2
getCoordinate(address, city = NULL, output = "json", formatted = F,
  limit = 600)

Arguments

address

address

city

the city of the address, optional

output

should be "json" or "xml", the type of the result

formatted

logical value, return the coordinates or the original results

limit

integer value.If the length of address exceeded limit, function will run in parallel

Value

A vector contains the corresponding coordiante. If "formatted=TRUE", return the numeric coordinates, otherwise return json or xml type result, depents on the argument "output". If the length of address is larger than 1, the result is a matrix.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
## Not run:  
## json output
getCoordinate('北京大学')

## xml output
getCoordinate('北京大学', output='xml')

## formatted
getCoordinate('北京大学', formatted = T)

## vectorization, return a matrix
getCoordinate(c('北京大学', '清华大学'), formatted = T)

## End(Not run)

badbye/baidumap documentation built on May 11, 2019, 5:24 p.m.