1 | <?php |
||
31 | class GraphLocation extends GraphNode |
||
32 | { |
||
33 | /** |
||
34 | * Returns the street component of the location |
||
35 | * |
||
36 | * @return string|null |
||
37 | */ |
||
38 | public function getStreet() |
||
42 | |||
43 | /** |
||
44 | * Returns the city component of the location |
||
45 | * |
||
46 | * @return string|null |
||
47 | */ |
||
48 | public function getCity() |
||
52 | |||
53 | /** |
||
54 | * Returns the state component of the location |
||
55 | * |
||
56 | * @return string|null |
||
57 | */ |
||
58 | public function getState() |
||
62 | |||
63 | /** |
||
64 | * Returns the country component of the location |
||
65 | * |
||
66 | * @return string|null |
||
67 | */ |
||
68 | public function getCountry() |
||
72 | |||
73 | /** |
||
74 | * Returns the zipcode component of the location |
||
75 | * |
||
76 | * @return string|null |
||
77 | */ |
||
78 | public function getZip() |
||
82 | |||
83 | /** |
||
84 | * Returns the latitude component of the location |
||
85 | * |
||
86 | * @return float|null |
||
87 | */ |
||
88 | public function getLatitude() |
||
92 | |||
93 | /** |
||
94 | * Returns the street component of the location |
||
95 | * |
||
96 | * @return float|null |
||
97 | */ |
||
98 | public function getLongitude() |
||
102 | } |
||
103 |