UNPKG
gaf-mobile
Version:
latest (1.0.0)
1.0.0
GAF mobile Web site
gaf-mobile
/
app
/
scripts
/
mocks
/
location.mock.js
16 lines
(14 loc)
•
262 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict'
;
/* exported LocationMock */
function
LocationMock
(
) {
return
{
city
:
'Sydney'
,
latitude
:
12.11
,
longitude
:
13.4
,
vicinity
:
'Sydney'
,
country
: {
name
:
'Australia'
},
formatted_address
:
'Sydney, Australia'
}; }