>
```javascript--browser
var location = {
    location: {
        latitude: 37.7609295,
        longitude: -122.4194155,
        shapeTypes: ['CITY', 'NEIGHBORHOOD']
    }
};
Breinify.temporalData({ additional: location }, function(data) {    
    /* 
     * The location will be resolved to San Francisco, CA, US.
     * In addition, it will contain the shapes of the 
     * neighborhood and the city the location points to.
     */
	console.log(data);
});
```