(lat, lng)
| 131 | } |
| 132 | |
| 133 | function setUserLocation(lat, lng) { |
| 134 | userLocation = new google.maps.LatLng(lat, lng); |
| 135 | fuzzyUserLocation = new google.maps.LatLng(Math.round(lat * 100) / 100, Math.round(lng * 100) / 100); |
| 136 | } |
| 137 | |
| 138 | function createMessage(text) { |
| 139 | return { |
no outgoing calls
no test coverage detected