mirror of
https://github.com/zhigang1992/uber-cities.git
synced 2026-04-14 23:28:52 +08:00
* Created 'Lady Driver' in providers and added links on appStores.js * Added the links on appStores.js for '99' provider * Added new provider to appStores.js, and included the cities in 99.js
42 lines
973 B
JavaScript
42 lines
973 B
JavaScript
module.exports = [
|
|
{
|
|
name: 'São Paulo',
|
|
company: 'Lady Driver',
|
|
info: {
|
|
formatted_address: 'São Paulo, State of São Paulo, Brazil',
|
|
country: {
|
|
long_name: 'Brazil',
|
|
short_name: 'BR',
|
|
types: ['country', 'political']
|
|
},
|
|
place_id: 'ChIJ0WGkg4FEzpQRrlsz_whLqZs'
|
|
}
|
|
},
|
|
{
|
|
name: 'Guarulhos',
|
|
company: 'Lady Driver',
|
|
info: {
|
|
formatted_address: 'Guarulhos - State of São Paulo, Brazil',
|
|
country: {
|
|
long_name: 'Brazil',
|
|
short_name: 'BR',
|
|
types: ['country', 'political']
|
|
},
|
|
place_id: 'ChIJDWUFicGLzpQRP75sgCjnLgs'
|
|
}
|
|
},
|
|
{
|
|
name: 'Rio de Janeiro',
|
|
company: 'Lady Driver',
|
|
info: {
|
|
formatted_address: 'Rio de Janeiro, State of Rio de Janeiro, Brazil',
|
|
country: {
|
|
long_name: 'Brazil',
|
|
short_name: 'BR',
|
|
types: ['country', 'political']
|
|
},
|
|
place_id: 'ChIJW6AIkVXemwARTtIvZ2xC3FA'
|
|
}
|
|
}
|
|
]
|